설치 테스트 추가

This commit is contained in:
bnu 2015-04-16 15:12:08 +09:00
parent 0d24de74d3
commit b07cd5f596
11 changed files with 2157 additions and 8 deletions

View file

@ -1,4 +1,4 @@
<?php //[STAMP] cb6a361b59627f91b689bd53cd926484
<?php //[STAMP] 12ed79a2e487867b140068ed6d5a381b
// This class was automatically generated by build task
// You should not change it manually as it will be overwritten on next build
@ -19,7 +19,9 @@ use Codeception\Module\UnitHelper;
* @method void am($role)
* @method void lookForwardTo($achieveValue)
* @method void comment($description)
* @method void haveFriend($name)
* @method void haveFriend($name, $actorClass = null)
*
* @SuppressWarnings(PHPMD)
*/
class UnitTester extends \Codeception\Actor
{
@ -56,6 +58,38 @@ 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.
*