From f50fddbc07525cfed0233d44567094d57f205a78 Mon Sep 17 00:00:00 2001 From: Azat Ibrakov Date: Thu, 20 Jul 2023 00:54:41 +0200 Subject: [PATCH] Complete tests of examples --- tests/test_examples.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/test_examples.py b/tests/test_examples.py index f74069c..4b414a9 100644 --- a/tests/test_examples.py +++ b/tests/test_examples.py @@ -7,6 +7,12 @@ def test_basic() -> None: assert result is None +def test_polygons_with_holes_binary_operations() -> None: + result = GonExamples.PolygonsWithHolesBinaryOperations.RunExamples() + + assert result is None + + def test_polygons_without_holes_binary_operations() -> None: result = GonExamples.PolygonsWithoutHolesBinaryOperations.RunExamples()