PHPUnit\Runner\CleverAndSmart\Unit\UtilTest::testCreateRunId PHP Method

testCreateRunId() public method

public testCreateRunId ( )
    public function testCreateRunId()
    {
        $idOne = Util::createRunId();
        $idTwo = Util::createRunId();
        $this->assertSame(128, strlen($idOne));
        $this->assertSame(128, strlen($idTwo));
        $this->assertNotSame($idOne, $idTwo);
    }