array("User-Agent: testing lib"), CURLOPT_PROXY => "http://proxy.com" ); $resp = ApiRequestor::post("http://example.com", "", ""); $fields = VT_Tests::lastReqOptions(); $this->assertTrue(in_array("User-Agent: testing lib", $fields["HTTPHEADER"])); $this->assertTrue(in_array('Content-Type: application/json', $fields["HTTPHEADER"])); $this->assertEquals($fields["PROXY"], "http://proxy.com"); } public function tearDown() { VT_Tests::reset(); Config::$curlOptions = array(); } }