| Current Path : /var/www/html/hr/vendor/codeception/base/tests/unit/Codeception/Step/ |
| Current File : /var/www/html/hr/vendor/codeception/base/tests/unit/Codeception/Step/ConditionalAssertionTest.php |
<?php
use \Codeception\Step\ConditionalAssertion;
class ConditionalAssertionTest extends \PHPUnit_Framework_TestCase
{
public function testCantSeeToString()
{
$assertion = new ConditionalAssertion('dontSee', ['text']);
$this->assertEquals('cant see "text"', $assertion->toString(200));
}
}