Your IP : 216.73.216.79


Current Path : /var/www/html/hr/vendor/codeception/base/tests/unit/Codeception/Step/
Upload File :
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));
    }
}