Passed
Push — main ( 9c59f2...5fac80 )
by Peter
02:52
created

SqlBootstrapperTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 11
c 1
b 0
f 0
dl 0
loc 24
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 3 1
A testRegisterBindings() 0 14 1
1
<?php
2
3
namespace AbterPhp\Framework\Bootstrappers\Databases;
4
5
use Opulence\Databases\ConnectionPools\ConnectionPool;
6
use Opulence\Databases\IConnection;
7
use Opulence\Databases\Providers\Types\Factories\TypeMapperFactory;
8
use Opulence\Ioc\Container;
9
use PHPUnit\Framework\TestCase;
10
11
class SqlBootstrapperTest extends TestCase
12
{
13
    /** @var SqlBootstrapper */
14
    protected SqlBootstrapper $sut;
15
16
    public function setUp(): void
17
    {
18
        $this->sut = new SqlBootstrapper();
19
    }
20
21
    public function testRegisterBindings()
22
    {
23
        $container = new Container();
24
25
        $this->sut->registerBindings($container);
26
27
        $actual = $container->resolve(ConnectionPool::class);
28
        $this->assertInstanceOf(ConnectionPool::class, $actual);
29
30
        $actual = $container->resolve(IConnection::class);
31
        $this->assertInstanceOf(IConnection::class, $actual);
32
33
        $actual = $container->resolve(TypeMapperFactory::class);
34
        $this->assertInstanceOf(TypeMapperFactory::class, $actual);
35
    }
36
}
37