template.py
Go to the documentation of this file.00001
00002 "Template test."
00003
00004 __authors__ = "Martin Sandve Alnes"
00005 __date__ = "2008-09-04 -- 2008-09-04"
00006
00007 import unittest
00008
00009 import ufl
00010 from ufl import *
00011 import sfc
00012 from sfc import *
00013
00014
00015 class TemplateTestCase(unittest.TestCase):
00016
00017 def setUp(self):
00018 pass
00019
00020 def test_something(self):
00021 self.assertTrue(True)
00022
00023 tests = [TemplateTestCase]
00024
00025 if __name__ == "__main__":
00026 unittest.main()