Example #1
0
 public function testBindingType()
 {
     $this->assertEquals(BindingType::NONE(), $this->item->getBindingType());
     $this->item = $this->item->withBindingType(BindingType::EQUIP());
     $this->assertEquals(BindingType::EQUIP(), $this->item->getBindingType());
 }