Skip to content

Commit b510f7d

Browse files
authored
Merge pull request #1675 from jim-parry/fix/testgroups
Add missing test group directives
2 parents be85033 + af99f7f commit b510f7d

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

tests/system/Database/Live/AliasTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
use CodeIgniter\Test\CIDatabaseTestCase;
44

5+
/**
6+
* @group DatabaseLive
7+
*/
58
class AliasTest extends CIDatabaseTestCase
69
{
710
protected $refresh = true;

tests/system/Database/Live/ConnectTest.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
<?php namespace CodeIgniter\Database\Live;
22

3-
;
4-
53
use CodeIgniter\Config\Config;
64
use CodeIgniter\Test\CIDatabaseTestCase;
75
use Config\Database;
86

7+
/**
8+
* @group DatabaseLive
9+
*/
910
class ConnectTest extends CIDatabaseTestCase
1011
{
1112
protected $group1;

tests/system/Database/Migrations/MigrationRunnerTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
use org\bovigo\vfs\vfsStream;
55
use CodeIgniter\Test\CIDatabaseTestCase;
66

7+
/**
8+
* @group DatabaseLive
9+
*/
710
class MigrationRunnerTest extends CIDatabaseTestCase
811
{
912
protected $root;

0 commit comments

Comments
 (0)