Example #1
0
 /**
  * @param \Remotelyliving\PlumbusPhp\Models\DingleBop $dingleBop
  * @param \Remotelyliving\PlumbusPhp\Models\Fleeb     $fleeb
  */
 public function rubDinglebopWithFleeb(DingleBop $dingleBop, Fleeb $fleeb)
 {
     $dingleBop->handleRubbing($fleeb);
 }
 /**
  * @test
  * @expectedException \Remotelyliving\PlumbusPhp\Exceptions\FleebHydrationException
  */
 public function handleRubbingFleebException()
 {
     $this->_sut->handleRubbing(new Fleeb());
 }