Inheritance diagram for SmartContractBytesTest:
Collaboration diagram for SmartContractBytesTest:Public Member Functions | |
| testBytes32Length () | |
| testBytesLength () | |
| testBytesReturn () | |
| testStringReturn () | |
| testUndefinedMethod () | |
Additional Inherited Members | |
Static Public Member Functions inherited from TestEthClient | |
| static | setUpBeforeClass () |
Protected Attributes inherited from TestEthContract | |
| $data | |
| $contract | |
Definition at line 12 of file SmartContractBytesTest.php.
| testBytes32Length | ( | ) |
function b2(bytes32 b) public pure returns (uint) { return b.length; }
Definition at line 21 of file SmartContractBytesTest.php.
| testBytesLength | ( | ) |
function b1(bytes b) public pure returns (uint) { return b.length; }
Definition at line 34 of file SmartContractBytesTest.php.
| testBytesReturn | ( | ) |
function b3(bytes a) public pure returns (bytes) { return a; }
Definition at line 48 of file SmartContractBytesTest.php.
| testStringReturn | ( | ) |
function b3(string b) public pure returns (string) { return b; }
Definition at line 62 of file SmartContractBytesTest.php.
| testUndefinedMethod | ( | ) |