-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathPrinterStatesTest.php
64 lines (52 loc) · 1.05 KB
/
PrinterStatesTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
class PrinterStatesTest extends PHPUnit\Framework\TestCase
{
public function testSuccess()
{
$this->assertTrue(true);
}
public function testFailure()
{
$this->assertTrue(false);
}
public function testError()
{
strpos();
}
public function testMissing()
{
$this->isMissing();
}
public function testSkipped()
{
$this->markTestSkipped('Skipped');
}
public function testWarning()
{
throw new PHPUnit\Framework\Warning("This is a test warning");
}
public function testRisky()
{
throw new PHPUnit\Framework\RiskyTestError("This is a risky test");
}
public function testNoAssertions()
{
}
public function testIncomplete()
{
$this->markTestIncomplete('Incomplete');
}
/**
* @dataProvider demoProvider
*/
public function testProvider($v)
{
$this->assertTrue($v);
}
public function demoProvider()
{
return [
[false]
];
}
}