public function testImportMethodsWithPrefix()
 {
     $collection = new MethodsCollection();
     $this->provider->importMethods($collection, array(), 'prefix_');
     $this->assertTrue($this->provider->has('prefix_static_method_1'));
     $this->assertTrue($this->provider->has('prefix_method1'));
 }