ControllerGeneratorTest::shouldReturnFalseIfControllerNotExists PHP Метод

shouldReturnFalseIfControllerNotExists() публичный Метод

    public function shouldReturnFalseIfControllerNotExists()
    {
        //given
        $generator = new ControllerGenerator('users');
        //when
        $isControllerExists = $generator->isControllerExists();
        //then
        $this->assertFalse($isControllerExists);
    }