Skip to content

Commit

Permalink
dapp init IndexCoopSymbolicExecution
Browse files Browse the repository at this point in the history
  • Loading branch information
ncitron committed Oct 19, 2021
0 parents commit f0beddd
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.sol linguist-language=Solidity
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/out
4 changes: 4 additions & 0 deletions Makefile
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
5 changes: 5 additions & 0 deletions src/IndexCoopSymbolicExecution.sol
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 {
}
22 changes: 22 additions & 0 deletions src/IndexCoopSymbolicExecution.t.sol
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);
}
}

0 comments on commit f0beddd

Please sign in to comment.