Fhaculty\Graph\Tests\Edge\EdgeBaseTest::testEdgeVertices PHP Method

testEdgeVertices() public method

public testEdgeVertices ( )
    public function testEdgeVertices()
    {
        $this->assertEquals(array($this->v1, $this->v2), $this->edge->getVertices()->getVector());
        $this->assertEquals(array(1, 2), $this->edge->getVertices()->getIds());
        $this->assertSame($this->graph, $this->edge->getGraph());
    }