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

testGet3Args0Slice0() public method

Tests NumArray::get with slicing argument 0:0 on vector
public testGet3Args0Slice0 ( )
    public function testGet3Args0Slice0()
    {
        $numArray = NumPHP::arange(1, 3);
        $expectedNumArray = new NumArray([]);
        $this->assertNumArrayEquals($expectedNumArray, $numArray->get('0:0'));
    }