TwoCaptchaTest::testGetBalance()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 8

Duplication

Lines 8
Ratio 100 %

Importance

Changes 0
Metric Value
dl 8
loc 8
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
/**
4
 * Class TwoCaptchaTest.
5
 */
6
class TwoCaptchaTest extends PHPUnit_Framework_TestCase
7
{
8
    ///**
9
    // * @expectedException \jumper423\decaptcha\core\DeCaptchaErrors
10
    // * @expectedExceptionMessage Нулевой либо отрицательный баланс
11
    // * @expectedExceptionCode 3
12
    // */
13
    //public function testRecognizeBalanceError1()
14
    //{
15
    //$captcha = new \jumper423\decaptcha\services\TwoCaptcha([
16
    //    \jumper423\decaptcha\services\TwoCaptcha::ACTION_FIELD_KEY => '200a1ed2b6ca001d8171c655658086ed',
17
    //]);
18
    //$captcha->setErrorLang(\jumper423\decaptcha\core\DeCaptchaErrors::LANG_RU);
19
    //$captcha->setCauseAnError(true);
20
    //$captcha->recognize(__DIR__.'/data/Captcha.jpg');
21
    //}
22
23
    //public function testRecognizeBalanceError2()
24
    //{
25
    //$captcha = new \jumper423\decaptcha\services\TwoCaptcha([
26
    //    \jumper423\decaptcha\services\TwoCaptcha::ACTION_FIELD_KEY => '200a1ed2b6ca001d8171c655658086ed',
27
    //]);
28
    //$captcha->setErrorLang(\jumper423\decaptcha\core\DeCaptchaErrors::LANG_RU);
29
    //if ($captcha->recognize(__DIR__.'/data/Captcha.jpg')) {
30
    //    $this->assertEquals('11111111111111', $captcha->getCode());
31
    //} else {
32
    //    $this->assertEquals('Нулевой либо отрицательный баланс', $captcha->getError());
33
    //}
34
    //}
35
36 View Code Duplication
    public function testGetBalance()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
37
    {
38
        $captcha = new \jumper423\decaptcha\services\TwoCaptcha([
39
            \jumper423\decaptcha\services\TwoCaptcha::ACTION_FIELD_KEY => '200a1ed2b6ca001d8171c655658086ed',
40
        ]);
41
        $captcha->setErrorLang(\jumper423\decaptcha\core\DeCaptchaErrors::LANG_RU);
42
        $this->assertEquals(0, (int) $captcha->getBalance());
43
    }
44
45 View Code Duplication
    public function testNotTrue()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
46
    {
47
        $captcha = new \jumper423\decaptcha\services\TwoCaptcha([
48
            \jumper423\decaptcha\services\TwoCaptcha::ACTION_FIELD_KEY => '200a1ed2b6ca001d8171c655658086ed',
49
        ]);
50
        $captcha->setErrorLang(\jumper423\decaptcha\core\DeCaptchaErrors::LANG_RU);
51
        $this->assertEquals(false, $captcha->notTrue());
52
    }
53
}
54