public function testSupportsClass()
 {
     $class = 'Test\\Class';
     $this->adm->expects($this->once())->method('supportsClass')->with($class)->will($this->returnValue(true));
     $this->assertTrue($this->pwfc->supportsClass($class));
 }