ControllerGeneratorTest::shouldReturnClassNamespace PHP Method

shouldReturnClassNamespace() public method

    public function shouldReturnClassNamespace()
    {
        //given
        $generator = new ControllerGenerator('users');
        //when
        $classNamespace = $generator->getClassNamespace();
        //then
        $this->assertEquals('\\Application\\Controller', $classNamespace);
    }