동작하지 않던 Unit test 코드 복원

This commit is contained in:
bnu 2015-04-15 21:33:45 +09:00
parent 3e58d680d8
commit 0d24de74d3
7 changed files with 141 additions and 123 deletions

View file

@ -1,4 +1,4 @@
<?php //[STAMP] 82bc9161e8772dbad0b5d616567eaa2d
<?php //[STAMP] cb6a361b59627f91b689bd53cd926484
// This class was automatically generated by build task
// You should not change it manually as it will be overwritten on next build
@ -19,9 +19,7 @@ use Codeception\Module\UnitHelper;
* @method void am($role)
* @method void lookForwardTo($achieveValue)
* @method void comment($description)
* @method void haveFriend($name, $actorClass = null)
*
* @SuppressWarnings(PHPMD)
* @method void haveFriend($name)
*/
class UnitTester extends \Codeception\Actor
{
@ -58,38 +56,6 @@ class UnitTester extends \Codeception\Actor
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks that two variables are same
*
* @param $expected
* @param $actual
* @param string $message
*
* @return mixed
* @see \Codeception\Module\Asserts::assertSame()
*/
public function assertSame($expected, $actual, $message = null) {
return $this->scenario->runStep(new \Codeception\Step\Action('assertSame', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks that two variables are not same
*
* @param $expected
* @param $actual
* @param string $message
* @see \Codeception\Module\Asserts::assertNotSame()
*/
public function assertNotSame($expected, $actual, $message = null) {
return $this->scenario->runStep(new \Codeception\Step\Action('assertNotSame', func_get_args()));
}
/**
* [!] Method is generated. Documentation taken from corresponding module.
*