mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 17:35:56 +08:00
Renamed some small test classes so they don't cause pytest warnings
Pytest thought that they were tests, since their name started with test
This commit is contained in:
parent
827ccd5a13
commit
0077e022ce
@ -6,7 +6,7 @@ import pytest
|
|||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
||||||
|
|
||||||
class TestConvexHullDecorator(SceneNodeDecorator):
|
class MockedConvexHullDecorator(SceneNodeDecorator):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
|
|
||||||
@ -14,7 +14,7 @@ class TestConvexHullDecorator(SceneNodeDecorator):
|
|||||||
return Polygon([[5, 5], [-5, 5], [-5, -5], [5, -5]])
|
return Polygon([[5, 5], [-5, 5], [-5, -5], [5, -5]])
|
||||||
|
|
||||||
|
|
||||||
class TestInvalidConvexHullDecorator(SceneNodeDecorator):
|
class InvalidConvexHullDecorator(SceneNodeDecorator):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
|
|
||||||
@ -34,16 +34,16 @@ class TestCollidesWithAreas:
|
|||||||
assert not cura_scene_node.collidesWithAreas([Polygon([[10, 10], [-10, 10], [-10, -10], [10, -10]])])
|
assert not cura_scene_node.collidesWithAreas([Polygon([[10, 10], [-10, 10], [-10, -10], [10, -10]])])
|
||||||
|
|
||||||
def test_convexHullIntersects(self, cura_scene_node):
|
def test_convexHullIntersects(self, cura_scene_node):
|
||||||
cura_scene_node.addDecorator(TestConvexHullDecorator())
|
cura_scene_node.addDecorator(MockedConvexHullDecorator())
|
||||||
assert cura_scene_node.collidesWithAreas([Polygon([[10, 10], [-10, 10], [-10, -10], [10, -10]])])
|
assert cura_scene_node.collidesWithAreas([Polygon([[10, 10], [-10, 10], [-10, -10], [10, -10]])])
|
||||||
|
|
||||||
def test_convexHullNoIntersection(self, cura_scene_node):
|
def test_convexHullNoIntersection(self, cura_scene_node):
|
||||||
cura_scene_node.addDecorator(TestConvexHullDecorator())
|
cura_scene_node.addDecorator(MockedConvexHullDecorator())
|
||||||
|
|
||||||
assert not cura_scene_node.collidesWithAreas([Polygon([[60, 60], [40, 60], [40, 40], [60, 40]])])
|
assert not cura_scene_node.collidesWithAreas([Polygon([[60, 60], [40, 60], [40, 40], [60, 40]])])
|
||||||
|
|
||||||
def test_invalidConvexHull(self, cura_scene_node):
|
def test_invalidConvexHull(self, cura_scene_node):
|
||||||
cura_scene_node.addDecorator(TestInvalidConvexHullDecorator())
|
cura_scene_node.addDecorator(InvalidConvexHullDecorator())
|
||||||
assert not cura_scene_node.collidesWithAreas([Polygon([[10, 10], [-10, 10], [-10, -10], [10, -10]])])
|
assert not cura_scene_node.collidesWithAreas([Polygon([[10, 10], [-10, 10], [-10, -10], [10, -10]])])
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user