-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dapp init IndexCoopSymbolicExecution
- Loading branch information
0 parents
commit f0beddd
Showing
5 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.sol linguist-language=Solidity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/out |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
all :; dapp build | ||
clean :; dapp clean | ||
test :; dapp test | ||
deploy :; dapp create IndexCoopSymbolicExecution |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// SPDX-License-Identifier: GPL-3.0-or-later | ||
pragma solidity ^0.8.6; | ||
|
||
contract IndexCoopSymbolicExecution { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// SPDX-License-Identifier: GPL-3.0-or-later | ||
pragma solidity ^0.8.6; | ||
|
||
import "ds-test/test.sol"; | ||
|
||
import "./IndexCoopSymbolicExecution.sol"; | ||
|
||
contract IndexCoopSymbolicExecutionTest is DSTest { | ||
IndexCoopSymbolicExecution execution; | ||
|
||
function setUp() public { | ||
execution = new IndexCoopSymbolicExecution(); | ||
} | ||
|
||
function testFail_basic_sanity() public { | ||
assertTrue(false); | ||
} | ||
|
||
function test_basic_sanity() public { | ||
assertTrue(true); | ||
} | ||
} |