A super simple, wafer thin, Solidity contract testing harness.
npm install -g wafr
wafr ./contracts --output ./contracts.json
pragma solidity ^0.4.4;
import "wafr/Test.sol";
contract MyTest is Test {
uint firstNumber;
uint secondNumber;
function setup() {
firstNumber = 1;
secondNumber = 2;
}
function test_basicUnitTest() {
assertTrue(firstNumber != secondNumber, "first should not equal second");
}
function test_BasicThrow() {
if (firstNumber != secondNumber) {
throw;
}
}
}
Note, run npm run example
to see this example above in action.
Wafr was created to serve as a very basic testing harness for Solidity contracts. It simply compiles your contracts, then provides a Test
class that can be inherited to test various contracts.
Wafr acts as a simple testing system. It does very little:
- Compiles contracts
- Deployes any contract with
test
in filename that inheritswafr/Test.sol
- Sends ether to your Test contract
- Runs the
setup
method, if any - Runs any method with
test
in the name - Then tests everything against the
assert
methods - Generates a full report,
--output
your contracts in a.json
file if desired
Please help better the ecosystem by submitting issues and pull requests to default. We need all the help we can get to build the absolute best linting standards and utilities. We follow the AirBNB linting standard. Please read more about contributing to wafr
in the CONTRIBUTING.md
.
You'll find more detailed information on using default and tailoring it to your needs in our guides:
- User guide - Usage, configuration, FAQ and complementary tools.
- Developer guide - Contributing to wafr and writing your own plugins & formatters.
There is always a lot of work to do, and will have many rules to maintain. So please help out in any way that you can:
- Create, enhance, and debug rules (see our guide to "Working on rules").
- Improve documentation.
- Chime in on any open issue or pull request.
- Open new issues about your ideas for making stylelint better, and pull requests to show us how your idea works.
- Add new tests to absolutely anything.
- Create or contribute to ecosystem tools, like the plugins for Atom and Sublime Text.
- Spread the word.
Please consult our Code of Conduct and Contributing docs before helping out.
We communicate via issues and pull requests.
This project is licensed under the MIT license, Copyright (c) 2016 Nick Dodson. For more information see LICENSE.md.
The MIT License
Copyright (c) 2016 Nick Dodson. nickdodson.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.