コード例 #1
0
ファイル: TestCaseTest.php プロジェクト: BatVane/Codeception
 public function testRunStepAddsTrace()
 {
     $step = new \Codeception\Step\Action(array('seeEquals', 5, 5));
     $this->testcase->runStep($step);
     $this->assertContains($step, $this->testcase->getTrace());
 }