Total Complexity | 4 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class SqlServerDatabaseTest extends BaseDatabase |
||
13 | { |
||
14 | /** |
||
15 | * @var Migration |
||
16 | */ |
||
17 | protected $migrate = null; |
||
18 | |||
19 | public function getExpectedUsersVersion1() |
||
20 | { |
||
21 | return [ |
||
22 | ["id" => 1, "name" => 'John Doe', 'createdate' => 'Jan 10 2016 12:00:00:AM'], |
||
23 | ["id" => 2, "name" => 'Jane Doe', 'createdate' => 'Dec 30 2015 12:00:00:AM'] |
||
24 | ]; |
||
25 | } |
||
26 | |||
27 | public function setUp() |
||
43 | } |
||
44 | } |
||
45 |