PhpOffice\PhpPresentation\Tests\Shape\Chart\SeriesTest::testValue PHP Method

testValue() public method

public testValue ( )
    public function testValue()
    {
        $object = new Series();
        $array = array('0' => 'a', '1' => 'b', '2' => 'c', '3' => 'd');
        $this->assertInternalType('array', $object->getValues());
        $this->assertEmpty($object->getValues());
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Series', $object->setValues());
        $this->assertEmpty($object->getValues());
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Series', $object->setValues($array));
        $this->assertCount(count($array), $object->getValues());
        $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Series', $object->addValue(4, 'e'));
        $this->assertCount(count($array) + 1, $object->getValues());
    }