NumPHPTest\Core\NumArray\GetTest::testGet1Args0 PHP Method

testGet1Args0() public method

Tests NumArray::get with argument 0 on vector with size 1
public testGet1Args0 ( )
    public function testGet1Args0()
    {
        $numArray = new NumArray([1]);
        $expectedNumArray = new NumArray(1);
        $this->assertNumArrayEquals($expectedNumArray, $numArray->get(0));
    }