File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments