Skip to content
Snippets Groups Projects
Commit 3d4017c3 authored by Niklas Hannekotte's avatar Niklas Hannekotte
Browse files

Merge branch 'master' into 'master'

added power test

See merge request qsue-team-b/rpn_collab!4
parents 628a6328 026f5460
No related branches found
No related tags found
1 merge request!5Fix missing operands
......@@ -32,3 +32,9 @@ TEST_CASE( "Test modulo function", "[calc]") {
REQUIRE( evaluate("32%") == 1 );
REQUIRE( evaluate("51%") == 0 );
}
TEST_CASE( "Basic power test", "[calc]") {
REQUIRE( evaluate("22^") == 4 );
REQUIRE( evaluate("43^") == 64 );
REQUIRE( evaluate("25^") == 32 );
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment