1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
import sys
import pytest
from sdl2 import ext as sdl2ext
class TestSDL2ExtGUI(object):
__tags__ = ["sdl", "sdl2ext"]
@classmethod
def setup_class(cls):
try:
sdl2ext.init()
except sdl2ext.SDLError:
raise pytest.skip('Video subsystem not supported')
@classmethod
def teardown_class(cls):
sdl2ext.quit()
@pytest.mark.skip("not implemented")
def test_UIFactory(self):
pass
@pytest.mark.skip("not implemented")
def test_UIFactory_create_button(self):
pass
@pytest.mark.skip("not implemented")
def test_UIFactory_create_checkbutton(self):
pass
@pytest.mark.skip("not implemented")
def test_UIFactory_create_text_entry(self):
pass
@pytest.mark.skip("not implemented")
def test_Button(self):
pass
@pytest.mark.skip("not implemented")
def test_CheckButton(self):
pass
@pytest.mark.skip("not implemented")
def test_TextEntry(self):
pass
@pytest.mark.skip("not implemented")
def test_UIProcessor(self):
pass
@pytest.mark.skip("not implemented")
def test_UIProcessor_activate(self):
pass
@pytest.mark.skip("not implemented")
def test_UIProcessor_deactivate(self):
pass
@pytest.mark.skip("not implemented")
def test_UIProcessor_dispatch(self):
pass
@pytest.mark.skip("not implemented")
def test_UIProcessor_mousedown(self):
pass
@pytest.mark.skip("not implemented")
def test_UIProcessor_mouseup(self):
pass
@pytest.mark.skip("not implemented")
def test_UIProcessor_mousemotion(self):
pass
@pytest.mark.skip("not implemented")
def test_UIProcessor_passevent(self):
pass
@pytest.mark.skip("not implemented")
def test_UIProcessor_process(self):
pass
@pytest.mark.skip("not implemented")
def test_UIProcessor_textinput(self):
pass
|