Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare( strict_types = 1 ); |
||
17 | public function testSetGetCharset () : void |
||
18 | { |
||
19 | $connector = new PostgreSqlConnector(); |
||
20 | |||
21 | $givenCharset = "utf8"; |
||
22 | $expectedCharset = "utf8"; |
||
23 | |||
24 | $connector->setCharset( $givenCharset ); |
||
25 | |||
26 | $this->assertEquals( $expectedCharset, $connector->getCharset() ); |
||
27 | } |
||
29 |