PhpMigration\Changes\v7dot0\IntegerOperationTest::testModulu PHP Метод

testModulu() публичный Метод

public testModulu ( )
    public function testModulu()
    {
        $this->assertHasSpot('$a % 0;');
        $this->assertNotSpot('$a % 1;');
        $this->assertHasSpot('1 % 0;');
        $this->assertNotSpot('1 % 1;');
        $this->assertHasSpot('$a % $b;');
    }
IntegerOperationTest