treasurehunting2/PySDL2-0.9.5/sdl2/test/sdl2ext_algorithms_test.py
2017-05-13 11:00:53 +02:00

27 lines
493 B
Python

import sys
import unittest
from ..ext import algorithms
class SDL2ExtAlgorithmsTest(unittest.TestCase):
__tags__ = ["sdl2ext"]
@unittest.skip("not implemented")
def test_cohensutherland(self):
pass
@unittest.skip("not implemented")
def test_liangbarsky(self):
pass
@unittest.skip("not implemented")
def test_clipline(self):
pass
def test_point_on_line(self):
pass
if __name__ == '__main__':
sys.exit(unittest.main())