Example #1
0
 public function testMinimumDurability()
 {
     $this->setExpectedException(\InvalidArgumentException::class, 'durability should be a positive integer, but is -5 instead.');
     $this->item = $this->item->withDurability(new Integer(-5));
 }