aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sol-tracing-utils/test/fixtures/contracts/SolcovIgnore.sol
diff options
context:
space:
mode:
Diffstat (limited to 'packages/sol-tracing-utils/test/fixtures/contracts/SolcovIgnore.sol')
-rw-r--r--packages/sol-tracing-utils/test/fixtures/contracts/SolcovIgnore.sol22
1 files changed, 0 insertions, 22 deletions
diff --git a/packages/sol-tracing-utils/test/fixtures/contracts/SolcovIgnore.sol b/packages/sol-tracing-utils/test/fixtures/contracts/SolcovIgnore.sol
deleted file mode 100644
index a7977ffb4..000000000
--- a/packages/sol-tracing-utils/test/fixtures/contracts/SolcovIgnore.sol
+++ /dev/null
@@ -1,22 +0,0 @@
-pragma solidity ^0.4.21;
-
-contract SolcovIgnore {
- uint public storedData;
-
- function set(uint x) public {
- /* solcov ignore next */
- storedData = x;
- }
-
- /* solcov ignore next */
- function get() constant public returns (uint retVal) {
- return storedData;
- }
-}
-
-/* solcov ignore next */
-contract Ignore {
- function ignored() public returns (bool) {
- return false;
- }
-}