# sprite = codesters.Circle(x, y, diameter, "color")
sun = codesters.Circle(-150, 175, 75, "gold")
# sprite = codesters.Square(x, y, width, "color")
house = codesters.Square(0, 0, 100, "blue")
try:
tval1 = house.get_x()
except:
tval1 = "DNE"
try:
tval2 = house.get_y()
except:
tval2= "DNE"
t1 = TestObjective()
t1.add_failure(tval1 == -125 and tval2 != -125, "Did you change your x-coordinate instead?")
t2 = TestObjective()
t2.add_success(tval2 == -125, "Great Job!")
t2.add_failure(tval2 == "DNE", "Did you delete your house?")
t2.add_failure(tval2 == 0, "Did you change the y-coordinate?")
t2.add_creative(tval2 != -125 and tval2 != 0, "That's a creative choice!")
tester = TestManager()
tester.add_test_list([t1, t2])
tester.run_tests()
tester.display_first_feedback()