Exemplo n.º 1
0
 public function testCanCreateArray()
 {
     $array = Arrays::create();
     $this->assertEquals(array(), $array->obtain());
 }
Exemplo n.º 2
0
 public function testCanCheckIfSubjectIsEmpty()
 {
     $array = Arrays::create();
     $this->assertTrue($array->isEmpty());
 }