File tree Expand file tree Collapse file tree 1 file changed +0
-22
lines changed Expand file tree Collapse file tree 1 file changed +0
-22
lines changed Original file line number Diff line number Diff line change 7
7
8
8
class CollectionTest extends TestCase
9
9
{
10
- /**
11
- * @return void
12
- */
13
10
protected function setUp (): void
14
11
{
15
12
parent ::setUp ();
16
13
17
14
mkdir (__DIR__ . '/temporary ' );
18
15
}
19
16
20
- /**
21
- * @test
22
- * @return void
23
- */
24
17
public function testCanOpenWithoutHeader (): void
25
18
{
26
19
$ collection = CsvCollection::make ()->options (['header ' => false ])
@@ -38,10 +31,6 @@ public function testCanOpenWithoutHeader(): void
38
31
$ this ->assertSame (10 , $ collection ->count ());
39
32
}
40
33
41
- /**
42
- * @test
43
- * @return void
44
- */
45
34
public function testCanOpenWithHeader (): void
46
35
{
47
36
$ collection = CsvCollection::make ()
@@ -59,10 +48,6 @@ public function testCanOpenWithHeader(): void
59
48
$ this ->assertSame (10 , $ collection ->count ());
60
49
}
61
50
62
- /**
63
- * @test
64
- * @return void
65
- */
66
51
public function testCanSaveWithoutHeader (): void
67
52
{
68
53
$ path = __DIR__ . '/temporary/save-without-header.csv ' ;
@@ -83,10 +68,6 @@ public function testCanSaveWithoutHeader(): void
83
68
unlink ($ path );
84
69
}
85
70
86
- /**
87
- * @test
88
- * @return void
89
- */
90
71
public function testCanSaveWithHeader (): void
91
72
{
92
73
$ path = __DIR__ . '/temporary/save-with-header.csv ' ;
@@ -107,9 +88,6 @@ public function testCanSaveWithHeader(): void
107
88
unlink ($ path );
108
89
}
109
90
110
- /**
111
- * @return void
112
- */
113
91
protected function tearDown (): void
114
92
{
115
93
rmdir (__DIR__ . '/temporary ' );
You can’t perform that action at this time.
0 commit comments