-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_profile_tenure_view.py
40 lines (32 loc) · 1.42 KB
/
test_profile_tenure_view.py
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
"""
/***************************************************************************
Name : ProfileTenureViewTest
Description : Test for ProfileTenureView widget.
Date : 10/October/2016
copyright : John Kahiu
email : gkahiu at gmail dot com
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""
import sys
import unittest
from unittest import TestCase
from PyQt4.QtGui import QApplication
from PyQt4.QtTest import QTest
from profile_tenure_view import ProfileTenureView
app = QApplication(sys.argv)
class TestProfileTenureView(TestCase):
def setUp(self):
self.tenure_view = ProfileTenureView()
def test_save_tenure_view(self):
status =True
self.assertTrue(status)
if __name__ == "__main__":
unittest.main()