Reputation: 314
How do I get assertTrue method? My file phpunit_test.php is
<?php
class phptest extends PHPUnit_Framework_TestCase
{
public function test_something()
{
$this->assertTrue{ 1 > 0 };
}
}
?>
but phpunit phpunit_test.php returns
There was 1 error:
1) phptest::test_something
Undefined property: phptest::$assertTrue
Upvotes: 2
Views: 1283