Neos\Flow\Tests\Unit\Persistence\Generic\QueryTest::setUp PHP Method

setUp() public method

Sets up this test case
public setUp ( )
    public function setUp()
    {
        $this->reflectionService = $this->createMock(ReflectionService::class);
        $this->objectManager = $this->createMock(ObjectManagerInterface::class);
        $this->query = new Persistence\Generic\Query('someType', $this->reflectionService);
        $this->query->injectObjectManager($this->objectManager);
    }