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

TestNetDnsSeeds::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 9
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 7
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 9
ccs 7
cts 7
cp 1
rs 9.6666
c 0
b 0
f 0
cc 1
eloc 6
nc 1
nop 0
crap 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