assertTrue( in_array( 'getuser', $methods ), 'seems like this function is outside this class' ); } } /** * @covers PMServiceProviderNTLMStream::getpassword * @todo Implement testgetpassword(). */ public function testgetpassword() { if (class_exists('PMServiceProviderNTLMStream')) { $methods = get_class_methods( 'PMServiceProviderNTLMStream'); $this->assertTrue( in_array( 'getpassword', $methods ), 'seems like this function is outside this class' ); } } /** * @covers PMServiceProviderNTLMStream::setAuthStream * @todo Implement testsetAuthStream(). */ public function testsetAuthStream() { if (class_exists('PMServiceProviderNTLMStream')) { $methods = get_class_methods( 'PMServiceProviderNTLMStream'); $this->assertTrue( in_array( 'setAuthStream', $methods ), 'seems like this function is outside this class' ); } } }