diff --git a/tests/src/flextype/core/HelpersTest.php b/tests/src/flextype/core/HelpersTest.php index 47af2278..78e77d46 100644 --- a/tests/src/flextype/core/HelpersTest.php +++ b/tests/src/flextype/core/HelpersTest.php @@ -13,4 +13,12 @@ test('test flextype() helper', function () { test('test app() helper', function () { $this->assertSame(app(), Flextype::getInstance()->app()); +}); + +test('test container() helper', function () { + $this->assertSame(container(), Flextype::getInstance()->container()); +}); + +test('test emitter() helper', function () { + $this->assertSame(emitter(), Flextype::getInstance()->container()->get('emitter')); }); \ No newline at end of file