1 | <?php |
||
11 | class DBALMysqlResourceInsertNoLoadTest extends \PHPUnit_Extensions_Database_TestCase |
||
12 | { |
||
13 | /** |
||
14 | * @var ConfigInterface |
||
15 | */ |
||
16 | private $config; |
||
17 | /** |
||
18 | * @var DBALMysqlResource |
||
19 | */ |
||
20 | private $resource; |
||
21 | /** |
||
22 | * @var \PDO |
||
23 | */ |
||
24 | private $pdo; |
||
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | protected function getTearDownOperation() |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public function setUp() |
||
58 | |||
59 | /** |
||
60 | * Returns the test database connection. |
||
61 | * @return PHPUnit_Extensions_Database_DB_IDatabaseConnection |
||
62 | * @throws \Exception |
||
63 | */ |
||
64 | protected function getConnection() |
||
71 | |||
72 | /** |
||
73 | * Returns the test dataset. |
||
74 | * @return PHPUnit_Extensions_Database_DataSet_IDataSet |
||
75 | */ |
||
76 | protected function getDataSet() |
||
80 | |||
81 | public function testLoad() |
||
92 | } |
||
93 |