Passed
Push — develop ( 3c5942...636dd4 )
by Nikolay
04:57
created

StorageTest::testDetermineFormatFs()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 0
dl 0
loc 2
rs 10
c 1
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
/**
3
 * Copyright (C) MIKO LLC - All Rights Reserved
4
 * Unauthorized copying of this file, via any medium is strictly prohibited
5
 * Proprietary and confidential
6
 * Written by Nikolay Beketov, 6 2020
7
 *
8
 */
9
10
namespace MikoPBX\Tests\Core\System;
11
12
use MikoPBX\Core\System\Storage;
13
use MikoPBX\Tests\Unit\AbstractUnitTest;
14
15
class StorageTest extends AbstractUnitTest
16
{
17
    protected Storage $storage;
18
19
    /**
20
     * Storage constructor
21
     */
22
    public function test__construct(): void
23
    {
24
        $this->storage = new Storage();
25
        $this->assertTrue(true);
26
    }
27
28
    public function testGetFsType()
29
    {
30
    }
31
32
    public function testMountDisk()
33
    {
34
    }
35
36
    public function testStatusMkfs()
37
    {
38
    }
39
40
    public function testIsStorageDisk()
41
    {
42
    }
43
44
    public function testDetermineFormatFs()
45
    {
46
    }
47
48
    public function testGetMediaDir()
49
    {
50
    }
51
52
    public function testSaveDiskSettings()
53
    {
54
    }
55
56
    public function testDiskIsMounted()
57
    {
58
    }
59
60
    public function testIsStorageDiskMounted()
61
    {
62
    }
63
64
    public function testGetMonitorDir()
65
    {
66
    }
67
68
    public function testMountSftpDisk()
69
    {
70
    }
71
72
    public function testGetUuid()
73
    {
74
    }
75
76
    public function testGetDiskSettings()
77
    {
78
    }
79
80
    public function testGetAllHdd()
81
    {
82
    }
83
84
    public function testMkfs_disk()
85
    {
86
    }
87
88
    public function testMountFtp()
89
    {
90
    }
91
92
    public function testFormatDiskLocal()
93
    {
94
    }
95
96
    public function testConfigure()
97
    {
98
    }
99
100
    public function testUmountDisk()
101
    {
102
    }
103
104
    public function testGetFreeSpace()
105
    {
106
    }
107
108
109
110
    public function testCheckFreeSpace()
111
    {
112
    }
113
114
    public function testSaveFstab()
115
    {
116
    }
117
118
119
    /**
120
     * @throws \ReflectionException
121
     */
122
    public function testCreateWorkDirs(): void
123
    {
124
        $this->storage = new Storage();
125
        $this->invokeMethod($this->storage, 'createWorkDirs');
126
        $this->assertTrue(true);
127
    }
128
}
129