/**
  * @group #189
  * @dataProvider allBuilders
  */
 public function testExposeAllMethodsWillExposeAllMethods(MockBuilder $builder, $type)
 {
     $this->youCannotExposeAMethodOnAMockThatIsNotNice($type);
     $mock = $builder->exposeAll()->get();
     /*$this->assert($mock->mySecretMethod(), equals, 'abc');*/
     $this->assert($mock->mySecretMethod())->equals('abc');
 }