File tree 2 files changed +4
-4
lines changed 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 4
4
- ' 7.1'
5
5
- ' 7.2'
6
6
- ' 7.3'
7
+ - ' 7.4'
7
8
8
9
before_script :
9
10
- travis_retry composer self-update
Original file line number Diff line number Diff line change 7
7
8
8
class ParseIdsTest extends TestCase
9
9
{
10
- /** test */
11
10
public function test_it_parses_a_single_integer ()
12
11
{
13
12
$ expected = [3 ];
@@ -36,19 +35,19 @@ public function test_it_something_complicated()
36
35
$ this ->assertEquals ($ expected , $ actual );
37
36
}
38
37
39
- public function test_it_thows_a_invalid_argument_exception ()
38
+ public function test_it_throws_a_invalid_argument_exception ()
40
39
{
41
40
$ this ->expectException (\InvalidArgumentException::class);
42
41
Ids::parse ("5--3 " );
43
42
}
44
43
45
- public function test_it_thows_a_invalid_argument_exception2 ()
44
+ public function test_it_throws_a_invalid_argument_exception2 ()
46
45
{
47
46
$ this ->expectException (\InvalidArgumentException::class);
48
47
Ids::parse ("hallo " );
49
48
}
50
49
51
- public function test_it_thows_a_invalid_argument_exception3 ()
50
+ public function test_it_throws_a_invalid_argument_exception3 ()
52
51
{
53
52
$ this ->expectException (\InvalidArgumentException::class);
54
53
Ids::parse ("3&5 " );
You can’t perform that action at this time.
0 commit comments