コード例 #1
0
 public function testShouldPrintInformationAboutCommunication()
 {
     $request = new Request('irrelevant url');
     $response = new Response();
     $response->statusCode = 200;
     assertThat($this->getLog($request, $response), allOf(containsString($request->method), containsString($request->url), containsString((string) $response->statusCode)));
 }
コード例 #2
0
ファイル: AllOfTest.php プロジェクト: ngitimfoyo/Nyari-AppPHP
 public function testMismatchDescriptionDescribesFirstFailingMatch()
 {
     $this->assertMismatchDescription('"good" was "bad"', allOf('bad', 'good'), 'bad');
 }