/**
     * Test for makeBc
     */
    public function testMakeBc(){
        $tm = new PMA_Theme_Manager();
        $this->assertNull(
            $tm->makeBc()
        );
        $this->assertEquals($GLOBALS['theme'],'pmahomme');
        $this->assertEquals($GLOBALS['pmaThemePath'],'./themes/pmahomme');
        $this->assertEquals($GLOBALS['pmaThemeImage'],'./themes/pmahomme/img/');

    }