Attachment 'test.py'
Download 1 from unittest import TestCase
2
3 class simpleTest(TestCase):
4 def setUp(self):
5 pass
6
7 def tearDown(self):
8 pass
9
10 def testExample(self):
11 self.assertEqual(1, 1)
12
13 def testOther(self):
14 self.assertNotEqual(0, 1)
15
16 if '__main__' == __name__:
17 import unittest
18 unittest.main()
Attached Files
To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.You are not allowed to attach a file to this page.