(trajectory)
| 813 | assert are_two_images_same(rotated_image,ref_image) |
| 814 | |
| 815 | def test_task_82(trajectory): |
| 816 | #print("[ERROR]This test has error!!!!!!") |
| 817 | image_path="./output/81.png" |
| 818 | ref_path="./data/81.jpeg" |
| 819 | assert os.path.exists(image_path) |
| 820 | image = Image.open(image_path) |
| 821 | ref_image = Image.open(ref_path) |
| 822 | rotated_image = image.rotate(180, expand=True) |
| 823 | assert are_two_images_same(rotated_image,ref_image) |
| 824 | |
| 825 | def test_task_83(trajectory): |
| 826 | image_paths = ["./output/83_1.png", "./output/83_2.png", "./output/83_3.png", "./output/83_4.png"] |
nothing calls this directly
no test coverage detected