Fhaculty\Graph\Tests\Set\VerticesTest::testFactoryEmptyArray PHP Method

testFactoryEmptyArray() public method

    public function testFactoryEmptyArray()
    {
        $vertices = Vertices::factory(array());
        $this->assertInstanceOf('Fhaculty\\Graph\\Set\\Vertices', $vertices);
        $this->assertTrue($vertices->isEmpty());
    }