Example #1
0
def t17(R):
    R.assertTrue(branches.fun2(2,3,5) == 7)
Example #2
0
def t15(R):
    R.assertTrue(branches.fun2(3, 2, -5) == -11)
Example #3
0
def t16(R):
    R.assertTrue(branches.fun2(3,17,4) == 20)
Example #4
0
def t13(R):
    R.assertTrue(branches.fun2(-1,-1,-1) == -2)
Example #5
0
def t14(R):
    R.assertTrue(branches.fun2(-10,3,-1) == -37)
Example #6
0
def t12(R):
    R.assertTrue(branches.fun2(1,-1,-1) == 0)
Example #7
0
def t11(R):
    R.assertTrue(branches.fun2(-1,1,-1) == -4)
Example #8
0
def t10(R):
    R.assertTrue(branches.fun2(-1,-1,1) == 3)
Example #9
0
def t9(R):
    R.assertTrue(branches.fun2(1,1,-1) == -2)
Example #10
0
def t7(R):
    R.assertTrue(branches.fun2(1,1,1) == 3)