ApaiIO\Test\ApaiIOTest::testApaiIORequestPerfomOperation PHP Method

testApaiIORequestPerfomOperation() public method

    public function testApaiIORequestPerfomOperation()
    {
        $conf = new GenericConfiguration();
        $operation = new Search();
        $request = $this->prophesize('\\ApaiIO\\Request\\RequestInterface');
        $request->perform($operation, $conf)->shouldBeCalledTimes(1)->willReturn();
        $conf->setRequest($request->reveal());
        $apaiIO = new ApaiIO($conf);
        $apaiIO->runOperation($operation);
    }