From cf7fc454ec1789603b360d69db83faf49b1e3ef1 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Fri, 22 Jul 2016 14:31:11 +0200 Subject: Add code coverage output Signed-off-by: Florian Pritz --- application/test/Test.php | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'application/test/Test.php') diff --git a/application/test/Test.php b/application/test/Test.php index 925fe131e..a0ebf880e 100644 --- a/application/test/Test.php +++ b/application/test/Test.php @@ -26,6 +26,7 @@ class TestMore extends \TestMore { abstract class Test { protected $t; protected $server = ""; + private $testid = ""; public function __construct() { @@ -38,6 +39,11 @@ abstract class Test { $this->server = $server; } + public function setTestID($testid) + { + $this->testid = $testid; + } + // Method: POST, PUT, GET etc // Data: array("param" => "value") ==> index.php?param=value // Source: http://stackoverflow.com/a/9802854/953022 @@ -77,6 +83,7 @@ abstract class Test { curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_HTTPHEADER, array( "Accept: application/json", + "X-Testsuite-Testname: API request from ".$this->testid, "Expect: ", )); -- cgit v1.2.3-24-g4f1b