ApaiIO\Test\Operations\Types\AbstractOperationTest::testAbstractOperationSetterAndGetter PHP Method

testAbstractOperationSetterAndGetter() public method

    public function testAbstractOperationSetterAndGetter()
    {
        $search = new Search();
        $search->setFoo('ABC');
        $this->assertEquals('ABC', $search->getFoo());
    }