Completed
Push — master ( d78611...69e30d )
by Tõnis
09:46
created

EmailsValidationFormTest::testSomeFeature()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
rs 10
cc 1
nc 1
nop 0
1
<?php
2
namespace andmemasin\emailsvalidator;
3
4
use andmemasin\emailsvalidator\models\EmailsValidationForm;
5
6
class EmailsValidationFormTest extends \Codeception\Test\Unit
7
{
8
    /**
9
     * @var \andmemasin\emailsvalidator\UnitTester
10
     */
11
    protected $tester;
12
13
    /** @var EmailsValidationForm */
14
    protected $model;
15
16
    
17
    protected function _before()
18
    {
19
        $this->model = $this->baseObject();
20
    }
21
22
    protected function _after()
23
    {
24
    }
25
26
    // tests
27
    public function testSomeFeature()
28
    {
29
30
    }
31
32
    /**
33
     * Returns a good working LimeSurvey collector
34
     * @return EmailsValidationForm
35
     */
36
    public function baseObject(){
37
        $model = new EmailsValidationForm();
38
        return $model;
39
    }
40
41
}