PhpOffice\PhpPresentation\Tests\Shape\Chart\AxisTest::testTitle PHP Method

testTitle() public method

public testTitle ( )
    public function testTitle()
    {
        $object = new Axis();
        $this->assertEquals('Axis Title', $object->getTitle());
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Axis', $object->setTitle('AAAA'));
        $this->assertEquals('AAAA', $object->getTitle());
    }