Ajout du GUI
This commit is contained in:
16
kivy/tests/test_uix_layout.py
Normal file
16
kivy/tests/test_uix_layout.py
Normal file
@@ -0,0 +1,16 @@
|
||||
'''
|
||||
uix.layout tests
|
||||
================
|
||||
Layout class is Abstract Base Class.
|
||||
'''
|
||||
|
||||
import unittest
|
||||
|
||||
from kivy.uix.layout import Layout
|
||||
|
||||
|
||||
class UixLayoutTest(unittest.TestCase):
|
||||
|
||||
def test_instantiation(self):
|
||||
with self.assertRaises(Exception):
|
||||
layout = Layout()
|
||||
Reference in New Issue
Block a user