Test Failed
Pull Request — master (#22)
by Vladislav
02:33
created

SetTradingStopTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
eloc 2
dl 0
loc 5
rs 10
c 2
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A testSetTradingStopEndpoint() 0 3 1
1
<?php
2
3
namespace Carpenstar\ByBitAPI\Derivatives\Contract\Position\SetTradingStop\Tests;
4
5
use PHPUnit\Framework\TestCase;
6
7
class SetTradingStopTest extends TestCase
8
{
9
    public function testSetTradingStopEndpoint()
10
    {
11
        $this->assertTrue(true);
12
    }
13
}
14