コード例 #1
0
ファイル: ConsoleReporter.php プロジェクト: phpassert/core
 function notify(Result $result)
 {
     $this->writer->write($result->getSymbol());
 }
コード例 #2
0
ファイル: ResultTest.php プロジェクト: phpassert/core
 /**
  * @dataProvider resultProvider
  */
 function testGetSymbol(Result $result, \string $expected)
 {
     $this->assertSame($expected, $result->getSymbol());
 }