circle = codesters.Circle(25, -25, 60, "gold"
try:
tval1 = circle.get_x()
except:
tval1 = "DNE"
t1 = TestObjective()
t1.add_success(tval1 < 350 and tval1 > -350, "Great Job debugging the program!")
t1.add_failure(tval1 == "DNE", "Did you delete your circle?")
t1.add_failure(tval1 >= 350 or tval1 <= -350, "Did you move your circle off the stage?")
tester = TestManager()
tester.add_test_list([t1])
tester.run_tests()
tester.display_first_feedback()