We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6712f1a commit 301f971Copy full SHA for 301f971
1 file changed
tests/phpunit/DbTest.php
@@ -0,0 +1,13 @@
1
+<?php
2
+ namespace Pdsinterop\PhpSolid;
3
+
4
+ use Pdsinterop\PhpSolid\Db;
5
6
+ const DBPATH = ":memory:";
7
+ class DbTest extends \PHPUnit\Framework\TestCase
8
+ {
9
+ public function testConnect() {
10
+ Db::connect();
11
+ $this->assertInstanceOf("PDO", Db::$pdo);
12
+ }
13
0 commit comments