assertTrue( in_array( '__construct', $methods ), 'seems like this function is outside this class' ); } } /** * @covers triggerLibrary::getSingleton * @todo Implement testgetSingleton(). */ public function testgetSingleton() { if (class_exists('triggerLibrary')) { $methods = get_class_methods( 'triggerLibrary'); $this->assertTrue( in_array( 'getSingleton', $methods ), 'seems like this function is outside this class' ); } } /** * @covers triggerLibrary::serializeInstance * @todo Implement testserializeInstance(). */ public function testserializeInstance() { if (class_exists('triggerLibrary')) { $methods = get_class_methods( 'triggerLibrary'); $this->assertTrue( in_array( 'serializeInstance', $methods ), 'seems like this function is outside this class' ); } } /** * @covers triggerLibrary::unSerializeInstance * @todo Implement testunSerializeInstance(). */ public function testunSerializeInstance() { if (class_exists('triggerLibrary')) { $methods = get_class_methods( 'triggerLibrary'); $this->assertTrue( in_array( 'unSerializeInstance', $methods ), 'seems like this function is outside this class' ); } } /** * @covers triggerLibrary::registerFunctionsFileToLibrary * @todo Implement testregisterFunctionsFileToLibrary(). */ public function testregisterFunctionsFileToLibrary() { if (class_exists('triggerLibrary')) { $methods = get_class_methods( 'triggerLibrary'); $this->assertTrue( in_array( 'registerFunctionsFileToLibrary', $methods ), 'seems like this function is outside this class' ); } } /** * @covers triggerLibrary::getMethodsFromLibraryFile * @todo Implement testgetMethodsFromLibraryFile(). */ public function testgetMethodsFromLibraryFile() { if (class_exists('triggerLibrary')) { $methods = get_class_methods( 'triggerLibrary'); $this->assertTrue( in_array( 'getMethodsFromLibraryFile', $methods ), 'seems like this function is outside this class' ); } } /** * @covers triggerLibrary::getRegisteredClasses * @todo Implement testgetRegisteredClasses(). */ public function testgetRegisteredClasses() { if (class_exists('triggerLibrary')) { $methods = get_class_methods( 'triggerLibrary'); $this->assertTrue( in_array( 'getRegisteredClasses', $methods ), 'seems like this function is outside this class' ); } } /** * @covers triggerLibrary::getLibraryDefinition * @todo Implement testgetLibraryDefinition(). */ public function testgetLibraryDefinition() { if (class_exists('triggerLibrary')) { $methods = get_class_methods( 'triggerLibrary'); $this->assertTrue( in_array( 'getLibraryDefinition', $methods ), 'seems like this function is outside this class' ); } } /** * @covers triggerLibrary::__destruct * @todo Implement test__destruct(). */ public function test__destruct() { if (class_exists('triggerLibrary')) { $methods = get_class_methods( 'triggerLibrary'); $this->assertTrue( in_array( '__destruct', $methods ), 'seems like this function is outside this class' ); } } }