Passed
Push — develop ( ec71a0...627254 )
by Nikolay
12:54 queued 13s
created

SystemTest::testLoadKernelModules()   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
c 1
b 0
f 0
dl 0
loc 2
rs 10
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, 7 2020
7
 *
8
 */
9
10
namespace MikoPBX\Tests\Core\System;
11
12
use MikoPBX\Core\System\System;
13
use MikoPBX\Tests\Unit\AbstractUnitTest;
14
15
class SystemTest extends AbstractUnitTest
16
{
17
18
    public function testGenerateAuthorizedKeys()
19
    {
20
    }
21
22
    public function testGetUpTime()
23
    {
24
    }
25
26
    public function testHostnameConfigure()
27
    {
28
    }
29
30
    public function testUpgradeOnline()
31
    {
32
    }
33
34
    public function testGetMemInfo()
35
    {
36
    }
37
38
    public function testSyslogDaemonStart()
39
    {
40
    }
41
42
    public function testGetInfo()
43
    {
44
    }
45
46
    public function testUpgradeFromImg()
47
    {
48
    }
49
50
    public function testGnatsLogRotate()
51
    {
52
    }
53
54
    public function testInvokeActions()
55
    {
56
    }
57
58
    public function testGetLogDir()
59
    {
60
    }
61
62
    public function testRebootSyncBg()
63
    {
64
    }
65
66
    public function testUpdateShellPassword()
67
    {
68
    }
69
70
    public function testLoadKernelModules()
71
    {
72
    }
73
74
    public function testModuleDownloadStatus()
75
    {
76
    }
77
78
    public function testNginxGenerateConf()
79
    {
80
    }
81
82
    public function testSshdConfigure()
83
    {
84
    }
85
86
    public function testNginxStart()
87
    {
88
    }
89
90
    public function testUpdateCustomFiles()
91
    {
92
    }
93
94
    public function testOnAfterPbxStarted()
95
    {
96
    }
97
98
    public function test__construct()
99
    {
100
    }
101
102
    public function testGetCpu()
103
    {
104
    }
105
106
    public function testSetupPhpLog()
107
    {
108
    }
109
110
    public function testNetworkReload()
111
    {
112
    }
113
114
    public function testShutdown()
115
    {
116
    }
117
118
    public function testCronConfigure()
119
    {
120
    }
121
122
    public function testVmwareToolsConfigure()
123
    {
124
    }
125
126
    public function testConvertConfig()
127
    {
128
    }
129
130
    public function testModuleStartDownload()
131
    {
132
    }
133
134
    public function testRebootSync()
135
    {
136
    }
137
138
    public function testStatusUpgrade()
139
    {
140
    }
141
142
    public function testGnatsStart()
143
    {
144
    }
145
146
    public function testGetSyslogFile()
147
    {
148
    }
149
150
    public function testRotatePhpLog()
151
    {
152
    }
153
154
    public function testGetPhpFile()
155
    {
156
    }
157
158
    public function testGetExternalIpInfo()
159
    {
160
        $result = System::getExternalIpInfo();
161
        $this->assertIsString($result);
162
    }
163
}
164