Extension\VarsTest::testDoubleVarDump PHP Метод

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

public testDoubleVarDump ( )
    public function testDoubleVarDump()
    {
        if (PHP_VERSION_ID < 70000) {
            $this->expectOutputString('float(1)' . "\n" . '1');
        } else {
            $this->expectOutputString('float(1)' . "\n" . '1.0');
        }
        $t = new \Test\Vars();
        $t->testDoubleVarDump();
    }