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
617152b6
Commit
617152b6
authored
Dec 19, 2019
by
aniket-engg
Committed by
Aniket
Dec 20, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remix-tests tests fixes
parent
4c9e511e
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
14 additions
and
14 deletions
+14
-14
tests.sol.js
remix-tests/sol/tests.sol.js
+1
-1
simple_storage.sol
remix-tests/tests/examples_1/simple_storage.sol
+1
-1
simple_storage_test.sol
remix-tests/tests/examples_1/simple_storage_test.sol
+1
-1
simple_storage.sol
remix-tests/tests/examples_2/simple_storage.sol
+1
-1
simple_storage_test.sol
remix-tests/tests/examples_2/simple_storage_test.sol
+1
-1
simple_string.sol
remix-tests/tests/examples_3/simple_string.sol
+1
-1
simple_string_test.sol
remix-tests/tests/examples_3/simple_string_test.sol
+1
-1
SafeMath.sol
remix-tests/tests/examples_4/SafeMath.sol
+1
-1
SafeMathProxy.sol
remix-tests/tests/examples_4/SafeMathProxy.sol
+1
-1
SafeMath_test.sol
remix-tests/tests/examples_4/SafeMath_test.sol
+1
-1
simple_storage.sol
remix-tests/tests/examples_5/contract/simple_storage.sol
+1
-1
EvenOdd.sol
remix-tests/tests/examples_5/lib/EvenOdd.sol
+1
-1
simple_storage_test.sol
remix-tests/tests/examples_5/test/simple_storage_test.sol
+1
-1
number_test.sol
remix-tests/tests/number/number_test.sol
+1
-1
No files found.
remix-tests/sol/tests.sol.js
View file @
617152b6
module
.
exports
=
`
module
.
exports
=
`
pragma solidity >=0.4.22 <0.
6
.0;
pragma solidity >=0.4.22 <0.
7
.0;
library Assert {
library Assert {
...
...
remix-tests/tests/examples_1/simple_storage.sol
View file @
617152b6
pragma solidity
^0.5
.0;
pragma solidity
>= 0.5.0 < 0.7
.0;
contract SimpleStorage {
contract SimpleStorage {
uint public storedData;
uint public storedData;
...
...
remix-tests/tests/examples_1/simple_storage_test.sol
View file @
617152b6
pragma solidity
^0.5
.0;
pragma solidity
>= 0.5.0 < 0.7
.0;
import "./simple_storage.sol";
import "./simple_storage.sol";
contract MyTest {
contract MyTest {
...
...
remix-tests/tests/examples_2/simple_storage.sol
View file @
617152b6
pragma solidity
^0.5
.0;
pragma solidity
>= 0.5.0 < 0.7
.0;
contract SimpleStorage {
contract SimpleStorage {
uint public storedData;
uint public storedData;
...
...
remix-tests/tests/examples_2/simple_storage_test.sol
View file @
617152b6
pragma solidity
^0.5
.0;
pragma solidity
>= 0.5.0 < 0.7
.0;
import "./simple_storage.sol";
import "./simple_storage.sol";
contract MyTest {
contract MyTest {
...
...
remix-tests/tests/examples_3/simple_string.sol
View file @
617152b6
pragma solidity
^0.5
.0;
pragma solidity
>= 0.5.0 < 0.7
.0;
contract SimpleString {
contract SimpleString {
string public storedData;
string public storedData;
...
...
remix-tests/tests/examples_3/simple_string_test.sol
View file @
617152b6
pragma solidity
^0.5
.0;
pragma solidity
>= 0.5.0 < 0.7
.0;
import "./simple_string.sol";
import "./simple_string.sol";
contract StringTest {
contract StringTest {
...
...
remix-tests/tests/examples_4/SafeMath.sol
View file @
617152b6
// Copyright (c) 2016 Smart Contract Solutions, Inc.
// Copyright (c) 2016 Smart Contract Solutions, Inc.
pragma solidity >=0.4.22 <0.
6
.0;
pragma solidity >=0.4.22 <0.
7
.0;
/**
/**
...
...
remix-tests/tests/examples_4/SafeMathProxy.sol
View file @
617152b6
pragma solidity >=0.4.22 <0.
6
.0;
pragma solidity >=0.4.22 <0.
7
.0;
import "./SafeMath.sol";
import "./SafeMath.sol";
/*
/*
...
...
remix-tests/tests/examples_4/SafeMath_test.sol
View file @
617152b6
pragma solidity >=0.4.22 <0.
6
.0;
pragma solidity >=0.4.22 <0.
7
.0;
import "remix_tests.sol";
import "remix_tests.sol";
import "./SafeMath.sol";
import "./SafeMath.sol";
import "./SafeMathProxy.sol";
import "./SafeMathProxy.sol";
...
...
remix-tests/tests/examples_5/contract/simple_storage.sol
View file @
617152b6
pragma solidity
^0.5
.0;
pragma solidity
>= 0.5.0 < 0.7
.0;
import "../../examples_4/SafeMath.sol";
import "../../examples_4/SafeMath.sol";
import "../lib/EvenOdd.sol";
import "../lib/EvenOdd.sol";
...
...
remix-tests/tests/examples_5/lib/EvenOdd.sol
View file @
617152b6
pragma solidity
^0.5
.0;
pragma solidity
>= 0.5.0 < 0.7
.0;
contract EvenOdd {
contract EvenOdd {
...
...
remix-tests/tests/examples_5/test/simple_storage_test.sol
View file @
617152b6
pragma solidity
^0.5
.0;
pragma solidity
>= 0.5.0 < 0.7
.0;
import "./../contract/simple_storage.sol";
import "./../contract/simple_storage.sol";
contract StorageResolveTest {
contract StorageResolveTest {
...
...
remix-tests/tests/number/number_test.sol
View file @
617152b6
pragma solidity
^0.5
.0;
pragma solidity
>= 0.5.0 < 0.7
.0;
contract IntegerTest {
contract IntegerTest {
...
...
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