コード例 #1
0
 public function testCanCreateArray()
 {
     $array = Arrays::create();
     $this->assertEquals(array(), $array->obtain());
 }
コード例 #2
0
 public function testCanCheckIfSubjectIsEmpty()
 {
     $array = Arrays::create();
     $this->assertTrue($array->isEmpty());
 }