Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
59d9931c
Commit
59d9931c
authored
Aug 21, 2018
by
Iuri Matias
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update readme
parent
0a255757
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
105 additions
and
1 deletion
+105
-1
README.md
README.md
+105
-1
No files found.
README.md
View file @
59d9931c
[

](https://travis-ci.org/ethereum/remix-tests)
[

](https://travis-ci.org/ethereum/remix-tests)
# remix-tests
Remix-Tests
---
### Installation
`npm -g install remix-tests`
### Test structure
Example test file:
```
Javascript
pragma solidity ^0.4.7;
import "remix_tests.sol"; // injected by remix-tests
import "./simple_storage.sol";
contract MyTest {
SimpleStorage foo;
uint i = 0;
function beforeAll() {
foo = new SimpleStorage();
}
function beforeEach() {
if (i == 1) {
foo.set(200);
}
i += 1;
}
function initialValueShouldBe100() public {
Assert.equal(foo.get(), 100, "initial value is not correct");
}
function initialValueShouldBe200() public constant returns {
return Assert.equal(foo.get(), 200, "initial value is not correct");
}
}
```
Available special functions:
*
`beforeEach`
- runs before each test
*
`beforeAll`
- runs before all tests
#### Assert library
Available functions:
`Assert.ok(value, message)`
`Assert.equal(value1, value2, message)`
`Assert.notEqual(value1, value2, message)`
supported values currently are:
`bool`
`uint`
`int`
`address`
`bytes32`
### Command Line
Usage:
*
A directory with tests files
`remix-tests examples/`
*
A test file
`remix-tests examples/simple_storage_test.sol`
### Library
Importing the library:
```
Javascript
const RemixTests = require('remix-tests');
```
Running a single test object:
```
Javascript
remixTests.runTest(contractName, contractObj, testCallback, resultsCallback)
```
params:
`testName`
-
`string`
name of the test
`testObj`
- web3.js 1.0 contract instance of the test
`testCallback(object)`
- called each time there is a test event. 3 possible type of objects:
*
`{ type: 'contract', value: '<TestName>', filename: '<test_filename.sol>' }`
*
`{ type: 'testPass', value: '<name of testing function>', time: <time taken>, context: '<TestName>'}`
*
`{ type: 'testFailure', value: '<name of testing function>', time: <time taken>, context: '<TestName>', errMsg: '<message in the Assert>' }`
`resultsCallback(object)`
*
`passingNum`
- number of passing tests
*
`failureNum`
- number of failing tests
*
`timePassed`
- time it took for all the tests to run (in seconds)
Running a set of tests given the sourcecode:
```
Javascript
remixTests.runTestSources(contractSources, testCallback, resultCallback, finalCallback, importFileCb);
```
params:
`contractSources`
-
`object`
->
`filename => { content: source }`
`testCallback(object)`
- called each time there is a test event. 3 possible type of objects:
*
`{ type: 'contract', value: '<TestName>', filename: '<test_filename.sol>' }`
*
`{ type: 'testPass', value: '<name of testing function>', time: <time taken>, context: '<TestName>'}`
*
`{ type: 'testFailure', value: '<name of testing function>', time: <time taken>, context: '<TestName>', errMsg: '<message in the Assert>' }`
`resultCallback(object)`
*
`passingNum`
- number of passing tests
*
`failureNum`
- number of failing tests
*
`timePassed`
- time it took for all the tests to run (in seconds)
`finalCallback(err)`
- called when all tests finish running.
`importCb(url, cb)`
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment