fs
1<?php
2
3namespace Fs;
4
5use Upside\Std\Fs\Fs;
6use PHPUnit\Framework\TestCase;
7
8class FsTest extends TestCase
9{
10
11public function test_chown()
12{
13
14}
15
16public function test_file()
17{
18
19}
20
21public function test_dir()
22{
23
24}
25
26public function test_touch()
27{
28
29}
30
31public function test_rename()
32{
33
34}
35
36public function test_chgrp()
37{
38
39}
40
41public function test_remove()
42{
43
44}
45
46public function test_is_dir()
47{
48
49}
50
51public function test_chmod()
52{
53
54}
55
56public function test_from_file()
57{
58
59}
60
61public function test_from()
62{
63
64}
65
66public function test_from_dir()
67{
68
69}
70
71public function test_is_file()
72{
73
74}
75}
76