Extension\FibonnaciTest::testMethods PHP Метод

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

public testMethods ( )
    public function testMethods()
    {
        $t = new \Test\Fibonnaci();
        $this->assertSame($t->fibInt(), 13);
        $this->assertSame($t->fibDouble(), 13.0);
        $this->assertSame($t->fibArray(), array(0, 1, 1, 2, 3, 5, 8, 13, 21, 34));
        $this->assertSame($t->fibArray2(), array(0, 1, 1, 2, 3, 5, 8, 13, 21, 34));
    }
FibonnaciTest