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