1 | <?php namespace Webwizo\Shortcodes; |
||
3 | class ShortcodesServiceProviderTest extends TestCase |
||
4 | { |
||
5 | /** |
||
6 | * Setup the test environment. |
||
7 | */ |
||
8 | public function setUp() |
||
9 | { |
||
10 | parent::setUp(); |
||
11 | } |
||
12 | |||
13 | public function testShortcodeClass() |
||
14 | { |
||
15 | $shortcode = app('shortcode'); |
||
16 | $this->assertInstanceOf('Webwizo\Shortcodes\Shortcode', $shortcode); |
||
17 | } |
||
18 | } |
||
19 |