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
0a78ff25
Commit
0a78ff25
authored
Oct 23, 2020
by
aniket-engg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libs test fixed
parent
df2fa668
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
20 additions
and
20 deletions
+20
-20
debugger.js
libs/remix-debug/test/debugger.js
+2
-2
txFormat.js
libs/remix-lib/test/txFormat.js
+3
-3
simple_storage.sol
libs/remix-tests/tests/examples_1/simple_storage.sol
+2
-2
simple_storage_test.sol
libs/remix-tests/tests/examples_1/simple_storage_test.sol
+1
-1
simple_storage.sol
libs/remix-tests/tests/examples_2/simple_storage.sol
+1
-1
simple_storage_test.sol
libs/remix-tests/tests/examples_2/simple_storage_test.sol
+1
-1
simple_string.sol
libs/remix-tests/tests/examples_3/simple_string.sol
+1
-1
simple_string_test.sol
libs/remix-tests/tests/examples_3/simple_string_test.sol
+1
-1
SafeMath.sol
libs/remix-tests/tests/examples_4/SafeMath.sol
+1
-1
SafeMathProxy.sol
libs/remix-tests/tests/examples_4/SafeMathProxy.sol
+1
-1
SafeMath_test.sol
libs/remix-tests/tests/examples_4/SafeMath_test.sol
+1
-1
simple_storage.sol
.../remix-tests/tests/examples_5/contract/simple_storage.sol
+2
-2
EvenOdd.sol
libs/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
libs/remix-tests/tests/number/number_test.sol
+1
-1
No files found.
libs/remix-debug/test/debugger.js
View file @
0a78ff25
...
...
@@ -8,7 +8,7 @@ var vmCall = require('./vmCall')
var
Debugger
=
require
(
'../src/Ethdebugger'
)
var
compiler
=
require
(
'solc'
)
var
ballot
=
`pragma solidity >=0.4.22 <0.
8
.0;
var
ballot
=
`pragma solidity >=0.4.22 <0.
7
.0;
/**
* @title Ballot
...
...
@@ -40,7 +40,7 @@ contract Ballot {
* @dev Create a new ballot to choose one of 'proposalNames'.
* @param proposalNames names of proposals
*/
constructor(bytes32[] memory proposalNames) {
constructor(bytes32[] memory proposalNames)
public
{
uint p = 45;
chairperson = msg.sender;
address addressLocal = msg.sender; // copy of state variable
...
...
libs/remix-lib/test/txFormat.js
View file @
0a78ff25
...
...
@@ -376,7 +376,7 @@ const nestedArrayContract = `contract nestedArrayContractTest {
}
}`
const
deploySimpleLib
=
`pragma solidity >= 0.5.0 < 0.
8
.0;
const
deploySimpleLib
=
`pragma solidity >= 0.5.0 < 0.
7
.0;
library lib1 {
function getEmpty () public {
...
...
@@ -397,14 +397,14 @@ contract testContractLinkLibrary {
}
}`
const
encodeFunctionCall
=
`pragma solidity >= 0.5.0 < 0.
8
.0;
const
encodeFunctionCall
=
`pragma solidity >= 0.5.0 < 0.
7
.0;
contract testContractLinkLibrary {
function get (uint _p, string memory _o) public {
}
}`
const
fallbackAndReceiveFunction
=
`pragma solidity >= 0.5.0 < 0.
8
.0;
const
fallbackAndReceiveFunction
=
`pragma solidity >= 0.5.0 < 0.
7
.0;
contract fallbackAndReceiveFunctionContract {
function get (uint _p, string memory _o) public {
...
...
libs/remix-tests/tests/examples_1/simple_storage.sol
View file @
0a78ff25
pragma solidity >= 0.5.0 < 0.
8
.0;
pragma solidity >= 0.5.0 < 0.
7
.0;
contract SimpleStorage {
uint public storedData;
constructor() {
constructor()
public
{
storedData = 100;
}
...
...
libs/remix-tests/tests/examples_1/simple_storage_test.sol
View file @
0a78ff25
pragma solidity >= 0.5.0 < 0.
8
.0;
pragma solidity >= 0.5.0 < 0.
7
.0;
import "./simple_storage.sol";
contract MyTest {
...
...
libs/remix-tests/tests/examples_2/simple_storage.sol
View file @
0a78ff25
pragma solidity >= 0.5.0 < 0.
8
.0;
pragma solidity >= 0.5.0 < 0.
7
.0;
contract SimpleStorage {
uint public storedData;
...
...
libs/remix-tests/tests/examples_2/simple_storage_test.sol
View file @
0a78ff25
pragma solidity >= 0.5.0 < 0.
8
.0;
pragma solidity >= 0.5.0 < 0.
7
.0;
import "./simple_storage.sol";
contract MyTest {
...
...
libs/remix-tests/tests/examples_3/simple_string.sol
View file @
0a78ff25
pragma solidity >= 0.5.0 < 0.
8
.0;
pragma solidity >= 0.5.0 < 0.
7
.0;
contract SimpleString {
string public storedData;
...
...
libs/remix-tests/tests/examples_3/simple_string_test.sol
View file @
0a78ff25
pragma solidity >= 0.5.0 < 0.
8
.0;
pragma solidity >= 0.5.0 < 0.
7
.0;
import "./simple_string.sol";
contract StringTest {
...
...
libs/remix-tests/tests/examples_4/SafeMath.sol
View file @
0a78ff25
// Copyright (c) 2016 Smart Contract Solutions, Inc.
pragma solidity >=0.4.22 <0.
8
.0;
pragma solidity >=0.4.22 <0.
7
.0;
/**
...
...
libs/remix-tests/tests/examples_4/SafeMathProxy.sol
View file @
0a78ff25
pragma solidity >=0.4.22 <0.
8
.0;
pragma solidity >=0.4.22 <0.
7
.0;
import "./SafeMath.sol";
/*
...
...
libs/remix-tests/tests/examples_4/SafeMath_test.sol
View file @
0a78ff25
pragma solidity >=0.4.22 <0.
8
.0;
pragma solidity >=0.4.22 <0.
7
.0;
import "remix_tests.sol";
import "./SafeMath.sol";
import "./SafeMathProxy.sol";
...
...
libs/remix-tests/tests/examples_5/contract/simple_storage.sol
View file @
0a78ff25
pragma solidity >= 0.5.0 < 0.
8
.0;
pragma solidity >= 0.5.0 < 0.
7
.0;
import "../../examples_4/SafeMath.sol";
import "../lib/EvenOdd.sol";
...
...
@@ -7,7 +7,7 @@ contract SimpleStorage is EvenOdd{
using SafeMath for uint256;
uint public storedData;
constructor() {
constructor()
public
{
storedData = 100;
}
...
...
libs/remix-tests/tests/examples_5/lib/EvenOdd.sol
View file @
0a78ff25
pragma solidity >= 0.5.0 < 0.
8
.0;
pragma solidity >= 0.5.0 < 0.
7
.0;
contract EvenOdd {
...
...
libs/remix-tests/tests/examples_5/test/simple_storage_test.sol
View file @
0a78ff25
pragma solidity >= 0.5.0 < 0.
8
.0;
pragma solidity >= 0.5.0 < 0.
7
.0;
import "./../contract/simple_storage.sol";
contract StorageResolveTest {
...
...
libs/remix-tests/tests/number/number_test.sol
View file @
0a78ff25
pragma solidity >= 0.5.0 < 0.
8
.0;
pragma solidity >= 0.5.0 < 0.
7
.0;
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