# sprite = codesters.Circle(x, y, diameter, "color")
sun = codesters.Circle(-150, 175, 75, "gold")
# sprite = codesters.Square(x, y, width, "color")
sprite = 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_success(tval1 == 0, "Great Job!")
t1.add_failure(tval1 == "DNE", "Did you change the square's name to house?")
t1.add_creative(tval1 != 0 and tval1 != "DNE", "Creative choice of location!")
t2 = TestObjective()
t2.add_success(tval2 == 0, "Great Job!")
t2.add_failure(tval2 == "DNE", "Did you change the square's name to house?")
t2.add_creative(tval2 != 0 and tval2 != "DNE", "Creative choice of location!")
tester = TestManager()
tester.add_test_list([t1,t2])
tester.run_tests()
tester.display_first_feedback()