2021-10-30 17:59:44 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
2021-11-15 23:29:06 +00:00
|
|
|
pragma solidity >=0.6.6;
|
2021-10-30 17:59:44 +00:00
|
|
|
|
|
|
|
import "ds-test/test.sol";
|
|
|
|
|
|
|
|
import "./Dapp.sol";
|
|
|
|
|
|
|
|
contract DappTest is DSTest {
|
|
|
|
Dapp dapp;
|
|
|
|
|
|
|
|
function setUp() public {
|
|
|
|
dapp = new Dapp();
|
|
|
|
}
|
|
|
|
|
|
|
|
function testFail_basic_sanity() public {
|
|
|
|
assertTrue(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
function test_basic_sanity() public {
|
|
|
|
assertTrue(true);
|
|
|
|
}
|
|
|
|
}
|