public function testCreatePlanOnEmptyPlanObject()
 {
     $plan = new Plan($this->planResource);
     $this->setExpectedException(\InvalidArgumentException::class);
     $plan->save();
 }