module_dir = 'Foo'; $bean->acl_category = 'Bar'; $this->assertEquals( 'Bar', $bean->getACLCategory() ); } /** * @ticket 39846 */ public function testGetACLCategoryWhenACLCategoryIsNotDefined() { $bean = new SugarBean(); $bean->module_dir = 'Foo'; $this->assertEquals( 'Foo', $bean->getACLCategory() ); } }