File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ language: php
3
3
# lock distro so new future defaults will not break the build
4
4
dist : trusty
5
5
6
- matrix :
6
+ jobs :
7
7
include :
8
8
- php : 5.4
9
9
- php : 5.5
@@ -26,7 +26,7 @@ matrix:
26
26
- os : windows
27
27
28
28
install :
29
- - composer install --no-interaction
29
+ - composer install
30
30
31
31
script :
32
32
- vendor/bin/phpunit --coverage-text
Original file line number Diff line number Diff line change 25
25
"react/promise" : " ^2.7 || ^1.2.1"
26
26
},
27
27
"require-dev" : {
28
- "phpunit/phpunit" : " ^7.0 || ^6 .0 || ^5.7 || ^4.8.35"
28
+ "phpunit/phpunit" : " ^9 .0 || ^5.7 || ^4.8.35"
29
29
}
30
30
}
Original file line number Diff line number Diff line change @@ -13,7 +13,10 @@ class LazyDatabaseTest extends TestCase
13
13
private $ loop ;
14
14
private $ db ;
15
15
16
- public function setUp ()
16
+ /**
17
+ * @before
18
+ */
19
+ public function setUpDataBase ()
17
20
{
18
21
$ this ->factory = $ this ->getMockBuilder ('Clue\React\SQLite\Factory ' )->disableOriginalConstructor ()->getMock ();
19
22
$ this ->loop = $ this ->getMockBuilder ('React\EventLoop\LoopInterface ' )->getMock ();
You can’t perform that action at this time.
0 commit comments