Completed
Push — 1.x ( fbb429 )
by Jakub
06:33
created

TestJobsRunner::testTwo()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
0 ignored issues
show
introduced by
Missing required strict_types declaration
Loading history...
2
namespace MyTester;
3
4
/**
5
 * Tests for class Runner
6
 *
7
 * @author Jakub Konečný
8
 * @deprecated since version 1.0
9
 */
10
class TestJobsRunner {
11
  /**
12
   * Test for Environment::testResult()
13
   *
14
   * @return void
15
   * @deprecated since version 1.0
16
   */
17
  public function test() {
18
    Environment::testResult("Test", false);
19
  }
20
  
21
  /**
22
   * Test for Environment::testResult()
23
   *
24
   * @return void
25
   * @deprecated since version 1.0
26
   */
27
  public function testTwo() {
28
    Environment::testResult("Test");
29
  }
30
}
31
?>