From 279a36b6f8249df48b92574437f57742897841a5 Mon Sep 17 00:00:00 2001 From: LianaHus Date: Tue, 15 Sep 2015 16:33:14 +0200 Subject: throw statement implementation --- test/libsolidity/SolidityEndToEndTest.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'test') diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp index 2ba6ab85..9c4d0c5b 100644 --- a/test/libsolidity/SolidityEndToEndTest.cpp +++ b/test/libsolidity/SolidityEndToEndTest.cpp @@ -5265,6 +5265,24 @@ BOOST_AUTO_TEST_CASE(library_stray_values) BOOST_CHECK(callContractFunction("f(uint256)", u256(33)) == encodeArgs(u256(42))); } +BOOST_AUTO_TEST_CASE(simple_throw) +{ + char const* sourceCode = R"( + contract Test { + function f(uint x) returns (uint) { + if (x > 10) + return x + 10; + else + throw; + return 2; + } + } + )"; + compileAndRun(sourceCode); + BOOST_CHECK(callContractFunction("f(uint256)", u256(11)) == encodeArgs(u256(21))); + BOOST_CHECK(callContractFunction("f(uint256)", u256(1)) == encodeArgs()); +} + BOOST_AUTO_TEST_SUITE_END() } -- cgit v1.2.3