Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

StdTomlTest

Inherits: Test

State Variables

root

string root;

path

string path;

Functions

setUp

function setUp() public;

test_readToml

function test_readToml() public view;

test_writeToml

function test_writeToml() public;

Structs

SimpleToml

struct SimpleToml {
    uint256 a;
    string b;
}

NestedToml

struct NestedToml {
    uint256 a;
    string b;
    SimpleToml c;
}