# sprite = codesters.Circle(x, y, diameter, "color")
sprite = codesters.Circle(-150, 175, 75, "blue")
try:
tval1 = str(sprite.get_color())
except:
tval1 = "DNE"
t1 = TestObjective()
t1.add_success(tval1 == "gold", "Great Job!")
t1.add_failure(tval1 == "blue", "Did you change the color?")
t1.add_failure(tval1 == "DNE", "Did you delete your circle?")
t1.add_creative(tval1 != "gold" and tval1 != "blue", "Creative choice!")
tester = TestManager()
tester.add_test_list([t1])
tester.run_tests()
tester.display_first_feedback()