github.com/ylsGit/go-ethereum@v1.6.5/tests/files/README.md (about)

     1  tests   [![Build Status](https://travis-ci.org/ethereum/tests.svg?branch=develop)](https://travis-ci.org/ethereum/tests)
     2  =====
     3  
     4  Common tests for all clients to test against. See the documentation http://www.ethdocs.org/en/latest/contracts-and-transactions/ethereum-tests/index.html
     5  
     6  Do not chagne test files in folders: 
     7  * StateTests
     8  * BlockchainTests
     9  * TransactionTests 
    10  * VMTests
    11  
    12  It is being created by the testFillers which could be found at https://github.com/ethereum/cpp-ethereum/tree/develop/test/libethereum
    13  
    14  If you want to modify a test filler or add a new test please contact @winsvega at https://gitter.im/ethereum/cpp-ethereum
    15  
    16  
    17  
    18  All files should be of the form:
    19  
    20  ```
    21  {
    22  	"test1name":
    23  	{
    24  		"test1property1": ...,
    25  		"test1property2": ...,
    26  		...
    27  	},
    28  	"test2name":
    29  	{
    30  		"test2property1": ...,
    31  		"test2property2": ...,
    32  		...
    33  	}
    34  }
    35  ```
    36  
    37  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.
    38