Completed
Push — stable ( 867da4...9d763b )
by Nuno
07:33 queued 05:33
created

tests/ServiceProviderTest.php (1 issue)

Labels
Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
/**
4
 * This file is part of PROJECT-NAME.
5
 *
6
 * (c) Nuno Maduro <[email protected]>
7
 *
8
 *  For the full copyright and license information, please view the LICENSE
9
 *  file that was distributed with this source code.
10
 */
11
12
namespace NunoMaduro\Tests\LaravelDesktopNotifier;
13
14
use GrahamCampbell\TestBenchCore\ServiceProviderTrait;
15
use NunoMaduro\LaravelDesktopNotifier\Contracts\Notification;
16
use NunoMaduro\LaravelDesktopNotifier\Contracts\Notifier;
17
18
/**
19
 * This is the service provider test class.
20
 *
21
 * @author Nuno Maduro <[email protected]>
22
 */
23
class ServiceProviderTest extends AbstractTestCase
0 ignored issues
show
There is at least one abstract method in this class. Maybe declare it as abstract, or implement the remaining methods: artisan, be, call, seed
Loading history...
24
{
25
    use ServiceProviderTrait;
26
27
    public function testNotificationIsInjectable()
28
    {
29
        $this->assertIsInjectable(Notification::class);
30
    }
31
32
    public function testNotifierIsInjectable()
33
    {
34
        $this->assertIsInjectable(Notifier::class);
35
    }
36
}
37