Skip to content

Commit edf6bf8

Browse files
committed
[*]: Fix Unit Testing
1 parent 9d3e161 commit edf6bf8

File tree

1 file changed

+3
-17
lines changed

1 file changed

+3
-17
lines changed

tests/Unit/BasicArrayTest.php

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ public function setUp()
6565
/**
6666
* Testing the Get Method.
6767
*
68-
* @covers \BinaryCube\DotArray\DotPathTrait
6968
* @covers \BinaryCube\DotArray\DotArray::get
7069
* @covers \BinaryCube\DotArray\DotArray::toArray
7170
* @covers \BinaryCube\DotArray\DotArray::<protected>
@@ -107,7 +106,6 @@ public function testGet()
107106
/**
108107
* Testing the Set Method.
109108
*
110-
* @covers \BinaryCube\DotArray\DotPathTrait
111109
* @covers \BinaryCube\DotArray\DotArray::set
112110
* @covers \BinaryCube\DotArray\DotArray::toArray
113111
* @covers \BinaryCube\DotArray\DotArray::<protected>
@@ -165,7 +163,6 @@ public function testSet()
165163
/**
166164
* Testing the Has Method.
167165
*
168-
* @covers \BinaryCube\DotArray\DotPathTrait
169166
* @covers \BinaryCube\DotArray\DotArray::has
170167
* @covers \BinaryCube\DotArray\DotArray::<protected>
171168
* @covers \BinaryCube\DotArray\DotArray::<static>
@@ -196,7 +193,6 @@ public function testHas()
196193
/**
197194
* Testing the isEmpty Method.
198195
*
199-
* @covers \BinaryCube\DotArray\DotPathTrait
200196
* @covers \BinaryCube\DotArray\DotArray::isEmpty
201197
* @covers \BinaryCube\DotArray\DotArray::<protected>
202198
* @covers \BinaryCube\DotArray\DotArray::<static>
@@ -227,7 +223,6 @@ public function testIsEmpty()
227223
/**
228224
* Testing the Delete Method.
229225
*
230-
* @covers \BinaryCube\DotArray\DotPathTrait
231226
* @covers \BinaryCube\DotArray\DotArray::delete
232227
* @covers \BinaryCube\DotArray\DotArray::<protected>
233228
* @covers \BinaryCube\DotArray\DotArray::<static>
@@ -263,7 +258,6 @@ public function testDelete()
263258
/**
264259
* Testing the Clear Method.
265260
*
266-
* @covers \BinaryCube\DotArray\DotPathTrait
267261
* @covers \BinaryCube\DotArray\DotArray::clear
268262
* @covers \BinaryCube\DotArray\DotArray::<protected>
269263
* @covers \BinaryCube\DotArray\DotArray::<static>
@@ -292,7 +286,6 @@ public function testClear()
292286
/**
293287
* Testing the Merge Method.
294288
*
295-
* @covers \BinaryCube\DotArray\DotPathTrait
296289
* @covers \BinaryCube\DotArray\DotArray::merge
297290
* @covers \BinaryCube\DotArray\DotArray::<protected>
298291
* @covers \BinaryCube\DotArray\DotArray::<static>
@@ -385,7 +378,6 @@ public function testMerge()
385378
/**
386379
* Testing the Count Method.
387380
*
388-
* @covers \BinaryCube\DotArray\DotPathTrait
389381
* @covers \BinaryCube\DotArray\DotArray::count
390382
* @covers \BinaryCube\DotArray\DotArray::<protected>
391383
* @covers \BinaryCube\DotArray\DotArray::<static>
@@ -407,7 +399,6 @@ public function testCount()
407399
/**
408400
* Testing the Find Method.
409401
*
410-
* @covers \BinaryCube\DotArray\DotPathTrait
411402
* @covers \BinaryCube\DotArray\DotFilteringTrait
412403
* @covers \BinaryCube\DotArray\DotArray::find
413404
* @covers \BinaryCube\DotArray\DotArray::<protected>
@@ -448,7 +439,6 @@ function () {
448439
/**
449440
* Testing the Filter Method.
450441
*
451-
* @covers \BinaryCube\DotArray\DotPathTrait
452442
* @covers \BinaryCube\DotArray\DotFilteringTrait
453443
* @covers \BinaryCube\DotArray\DotArray::filter
454444
* @covers \BinaryCube\DotArray\DotArray::<protected>
@@ -474,7 +464,6 @@ function ($value) {
474464
/**
475465
* Testing the FilterBy Method.
476466
*
477-
* @covers \BinaryCube\DotArray\DotPathTrait
478467
* @covers \BinaryCube\DotArray\DotFilteringTrait
479468
* @covers \BinaryCube\DotArray\DotArray::filterBy
480469
* @covers \BinaryCube\DotArray\DotArray::<protected>
@@ -586,7 +575,6 @@ function ($value) {
586575
/**
587576
* Testing the Where Method.
588577
*
589-
* @covers \BinaryCube\DotArray\DotPathTrait
590578
* @covers \BinaryCube\DotArray\DotFilteringTrait
591579
* @covers \BinaryCube\DotArray\DotArray::where
592580
* @covers \BinaryCube\DotArray\DotArray::<protected>
@@ -661,7 +649,6 @@ function ($value) {
661649
/**
662650
* Testing the First Method.
663651
*
664-
* @covers \BinaryCube\DotArray\DotPathTrait
665652
* @covers \BinaryCube\DotArray\DotArray::first
666653
* @covers \BinaryCube\DotArray\DotArray::<protected>
667654
* @covers \BinaryCube\DotArray\DotArray::<static>
@@ -716,10 +703,9 @@ public function testToJson()
716703
/**
717704
* Testing the toFlat Method.
718705
*
719-
* @covers \BinaryCube\DotArray\DotPathTrait
720-
* @covers \BinaryCube\DotArray\DotPathTrait::flatten
721-
* @covers \BinaryCube\DotArray\DotPathTrait::dotPathPattern
722-
* @covers \BinaryCube\DotArray\DotPathTrait::wrapSegmentKey
706+
* @covers \BinaryCube\DotArray\DotArray::flatten
707+
* @covers \BinaryCube\DotArray\DotArray::dotPathPattern
708+
* @covers \BinaryCube\DotArray\DotArray::wrapSegmentKey
723709
* @covers \BinaryCube\DotArray\DotArray::toFlat
724710
* @covers \BinaryCube\DotArray\DotArray::<protected>
725711
* @covers \BinaryCube\DotArray\DotArray::<static>

0 commit comments

Comments
 (0)