Esempio n. 1
0
 public function testFromObject()
 {
     $itemStack = ItemStack::fromObject((object) ['id' => 42, 'count' => 1337, 'foo' => 'bar']);
     $this->assertEquals(42, $itemStack->id);
     $this->assertEquals(1337, $itemStack->count);
     $this->assertEquals('bar', $itemStack->foo);
 }