Archived
1
0
This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
Fourmi/tests/test_gui.py
2014-06-11 15:58:00 +02:00

20 lines
375 B
Python

import unittest
from GUI import gui
class TestGUI(unittest.TestCase):
def setUp(self):
pass
def test_empty_attributes(self):
test_gui = gui.GUI()
test_gui.run()
test_gui.prepare_search()
def test_no_configurations(self):
test_gui = gui.GUI()
#test_gui.
test_gui.run()
test_gui.prepare_search()