assertTrue($group->willAccept('Foo')); } public function testCatchNone() { $group = new ContainerGroup(function () { return false; }); $this->assertFalse($group->willAccept('Foo')); } }