stage.set_background("city")
sprite = codesters.Sprite("bike")
try:
tval1 = sprite.get_size()
except:
tval1 = "DNE"
t1 = TestObjective()
t1.add_success(tval1 == .5, "Great Job!")
t1.add_failure(tval1 == 1, "Did you resize the sprite?")
t1.add_failure(tval1 == "DNE", "Did you delete the sprite?")
t1.add_creative(tval1 != .5 and tval1 != 1 and tval1 != "DNE", "Creative choice!")
tester = TestManager()
tester.add_test_list([t1])
tester.run_tests()
tester.display_first_feedback()