-
-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathphpunit.xml
More file actions
23 lines (22 loc) · 703 Bytes
/
phpunit.xml
File metadata and controls
23 lines (22 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="CodeGenerators">
<directory>tests/CodeGenerators</directory>
</testsuite>
<testsuite name="EthStatic">
<directory>tests/EthStatic/Unit</directory>
</testsuite>
<testsuite name="EthMainnet">
<directory>tests/EthMainnet/Unit</directory>
</testsuite>
<testsuite name="TestEthClient">
<directory>tests/TestEthClient/Unit</directory>
</testsuite>
</testsuites>
<php>
<env name="SERVER_URL" value="http://127.0.0.1:8545"/>
<env name="NETWORK_ID" value="5777"/>
<env name="INFURA_MAINNET_URL" value=""/>
</php>
</phpunit>