Completed
Pull Request — master (#85)
by thomas
03:18
created

TestNetDnsSeeds   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 12
ccs 7
cts 7
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 9 1
1
<?php
2
3
4
namespace BitWasp\Bitcoin\Networking\DnsSeeds;
5
6
class TestNetDnsSeeds extends DnsSeedList
7
{
8 3
    public function __construct()
9
    {
10 3
        parent::__construct([
11 3
            'testnet-seed.bitcoin.jonasschnelli.ch',
12 1
            'seed.tbtc.petertodd.org',
13 1
            'testnet-seed.bluematt.me',
14
            'testnet-seed.bitcoin.schildbach.de'
15 1
        ]);
16 3
    }
17
}
18