Skip to content

Commit

Permalink
assertEmpty
Browse files Browse the repository at this point in the history
  • Loading branch information
ueaner committed Sep 17, 2017
1 parent 5325c86 commit 2310302
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Di/ContainerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -207,12 +207,12 @@ public function testClear()
$container = $this->container;

$services = $container->getServices();
$this->assertTrue(!empty($services));
$this->assertNotEmpty($services);

$container->clear();

$services = $container->getServices();
$this->assertTrue(empty($services));
$this->assertEmpty($services);
}

public function testGetClassName()
Expand Down

0 comments on commit 2310302

Please sign in to comment.