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
b9d36b49
Commit
b9d36b49
authored
Aug 18, 2021
by
aniket-engg
Committed by
Aniket
Aug 19, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
unit tests for hhLogs
parent
b3112d6d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
0 deletions
+6
-0
assert_ok_test.sol
libs/remix-tests/tests/examples_0/assert_ok_test.sol
+6
-0
console.sol
libs/remix-tests/tests/examples_0/hardhat/console.sol
+0
-0
testRunner.spec.ts
libs/remix-tests/tests/testRunner.spec.ts
+0
-0
No files found.
libs/remix-tests/tests/examples_0/assert_ok_test.sol
View file @
b9d36b49
import "remix_tests.sol"; // this import is automatically injected by Remix.
import "./hardhat/console.sol";
contract AssertOkTest {
function okPassTest() public {
console.log("AssertOkTest", "okPassTest");
Assert.ok(true, "okPassTest passes");
}
function okFailTest() public {
console.log("AssertOkTest", "okFailTest");
Assert.ok(false, "okFailTest fails");
}
}
\ No newline at end of file
libs/remix-tests/tests/examples_0/hardhat/console.sol
0 → 100644
View file @
b9d36b49
This diff is collapsed.
Click to expand it.
libs/remix-tests/tests/testRunner.spec.ts
View file @
b9d36b49
This diff is collapsed.
Click to expand it.
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