Test Failed
Push — 1.0.0-dev ( 6506b5...225896 )
by nguereza
05:07
created

FormTest::tearDown()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
cc 1
eloc 0
c 1
b 1
f 0
nc 1
nop 0
dl 0
loc 2
rs 10
1
<?php 
2
	use PHPUnit\Framework\TestCase;
3
	
4
	class FormTest extends TestCase
5
	{
6
		
7
		public static function setUpBeforeClass()
8
		{
9
		}
10
		
11
		public static function tearDownAfterClass()
12
		{
13
			
14
		}
15
		
16
		
17
		protected function setUp()
18
		{
19
			
20
		}
21
22
		protected function tearDown()
23
		{
24
		}
25
26
		public function testNotYet()
27
		{
28
			$this->markTestSkipped();
29
		}
30
	}