Example #1
0
 public function testアイテムをストックできること()
 {
     $item = new Item(['id' => 'abcdefghijklmnopq123']);
     $this->apiMock->shouldReceive('putItemsItemIdStock')->andReturn(true);
     $result = $item->stock();
     $this->assertTrue($result, 'アイテムをストックできた');
 }