Skip to content

Commit 7b9bce9

Browse files
committed
Fix test function length
1 parent a0323ed commit 7b9bce9

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

tests/Diff/DiffUtilsTest.php

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class DiffUtilsTest extends TestCase
2323
/**
2424
* Test the sorting of an array by the nested arrays it contains
2525
*/
26-
public function testTupleSort(): void
26+
public function testTupleSortOne(): void
2727
{
2828
$this->assertEquals(
2929
1,
@@ -65,7 +65,13 @@ public function testTupleSort(): void
6565
],
6666
)
6767
);
68+
}
6869

70+
/**
71+
* Test the sorting of an array by the nested arrays it contains
72+
*/
73+
public function testTupleSortZero(): void
74+
{
6975
$this->assertEquals(
7076
0,
7177
DiffUtils::tupleSort(
@@ -109,7 +115,13 @@ public function testTupleSort(): void
109115
],
110116
)
111117
);
118+
}
112119

120+
/**
121+
* Test the sorting of an array by the nested arrays it contains
122+
*/
123+
public function testTupleSortMinusOne(): void
124+
{
113125
$this->assertEquals(
114126
-1,
115127
DiffUtils::tupleSort(

0 commit comments

Comments
 (0)