forked from sc0Vu/web3.php
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathTestCase.php
62 lines (53 loc) · 1 KB
/
TestCase.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
namespace Test;
use \PHPUnit\Framework\TestCase as BaseTestCase;
use Web3\Web3;
class TestCase extends BaseTestCase
{
/**
* web3
*
* @var \Web3\Web3
*/
protected $web3;
/**
* testRinkebyHost
*
* @var string
*/
protected $testRinkebyHost = 'https://rinkeby.infura.io/vuethexplore';
/**
* testHost
*
* @var string
*/
protected $testHost = 'http://localhost:8545';
/**
* coinbase
*
* @var string
*/
protected $coinbase;
/**
* setUp
*
* @return void
*/
public function setUp()
{
$web3 = new Web3($this->testHost);
$this->web3 = $web3;
$web3->eth->coinbase(function ($err, $coinbase) {
if ($err !== null) {
return $this->fail($err->getMessage());
}
$this->coinbase = $coinbase;
});
}
/**
* tearDown
*
* @return void
*/
public function tearDown() {}
}