Esempio n. 1
0
 /**
  * @test
  * @covers \Sofa\Eloquence\ArgumentBag::isEmpty
  */
 public function is_empty()
 {
     $bag = $this->getBag();
     $empty = new ArgumentBag([]);
     $this->assertFalse($bag->isEmpty());
     $this->assertTrue($empty->isEmpty());
 }