go-ethereum/tests/files
2017-03-29 19:39:05 -04:00
..
ABITests tests: updated 2016-11-13 23:26:07 +01:00
ansible Merge branch 'rebase-1.5.9' 2017-03-29 19:39:05 -04:00
BasicTests tests: updated 2016-11-13 23:26:07 +01:00
BlockchainTests all: fix spelling errors 2017-01-06 19:44:35 +02:00
GenesisTests tests: updated 2016-11-13 23:26:07 +01:00
KeyStoreTests tests: updated 2016-11-13 23:26:07 +01:00
PoWTests tests: updated 2016-11-13 23:26:07 +01:00
RLPTests tests: updated 2016-11-13 23:26:07 +01:00
StateTests Merge https://github.com/ethereum/go-ethereum into rebase-1.5.9 2017-02-15 13:21:31 -05:00
TransactionTests Merge https://github.com/ethereum/go-ethereum into rebase-1.5.9 2017-02-15 13:21:31 -05:00
TrieTests tests: updated 2016-11-13 23:26:07 +01:00
VMTests Merge https://github.com/ethereum/go-ethereum into rebase-1.5.9 2017-02-15 13:21:31 -05:00
.gitignore Add 'tests/files/' from commit 'ce7204fa17560f6a76c7592bf5f23d29f22042d6' 2015-03-02 16:43:12 +01:00
package.json move all the deps to the latest repo 2017-03-20 09:11:55 -04:00
README.md Merge https://github.com/ethereum/go-ethereum into rebase-1.5.9 2017-02-15 13:21:31 -05:00
TODO tests: updated 2016-11-13 23:26:07 +01:00

tests Build Status

Common tests for all clients to test against. See the documentation http://www.ethdocs.org/en/latest/contracts-and-transactions/expanse-tests/index.html

Do not chagne test files in folders:

  • StateTests
  • BlockchainTests
  • TransactionTests
  • VMTests

It is being created by the testFillers which could be found at https://github.com/expanse-org/cpp-expanse/tree/develop/test/libethereum

If you want to modify a test filler or add a new test please contact @winsvega at https://gitter.im/expanse/cpp-expanse

All files should be of the form:

{
	"test1name":
	{
		"test1property1": ...,
		"test1property2": ...,
		...
	},
	"test2name":
	{
		"test2property1": ...,
		"test2property2": ...,
		...
	}
}

Arrays are allowed, but don't use them for sets of properties - only use them for data that is clearly a continuous contiguous sequence of values.