Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
35 | public function testGet() |
||
36 | { |
||
37 | $this->mock->expects( $this->once() )->method( 'getDefaultDriver' )->willReturn( 'smtp' ); |
||
38 | $this->mock->expects( $this->once() )->method( 'get' )->willReturn( $this->stub ); |
||
39 | |||
40 | $object = new \Aimeos\Base\Mail\Manager\Laravel( $this->mock ); |
||
41 | $this->assertInstanceOf( \Aimeos\Base\Mail\Iface::class, $object->get() ); |
||
42 | } |
||
44 |