| 1 | <?php namespace BuildR\TestTools; |
||
| 22 | class BuildR_TestCase extends PHPUnit_Framework_TestCase { |
||
| 23 | //@codingStandardsIgnoreEnd |
||
| 24 | |||
| 25 | use FakeDataGenerator; |
||
| 26 | use ReflectionUtilities; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Assert that the given constant is defined in the global namespace |
||
| 30 | * |
||
| 31 | * @param string $constantName |
||
| 32 | * |
||
| 33 | * @codeCoverageIgnore |
||
| 34 | */ |
||
| 35 | public function assertConstantDefined($constantName) { |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Assert that the given constant value is equals with thi given expectation |
||
| 41 | * |
||
| 42 | * @param string $constantName |
||
| 43 | * @param string $expected |
||
| 44 | * |
||
| 45 | * @codeCoverageIgnore |
||
| 46 | */ |
||
| 47 | public function assertConstantEquals($constantName, $expected) { |
||
| 50 | |||
| 51 | } |
||
| 52 |