Package platecom :: Package langview :: Package tests :: Module test_interfaces
[hide private]
[frames] | no frames]

Source Code for Module icsemantic.langfallback.tests.test_interfaces

 1  import unittest 
 2   
 3  from zope.testing import doctestunit 
 4  from zope.component import testing 
 5  from Testing import ZopeTestCase as ztc 
 6  from Products.PloneTestCase import PloneTestCase as ptc 
 7   
 8  from Products.Five import zcml 
 9  from Products.Five import fiveconfigure 
10  from Products.PloneTestCase.layer import PloneSite 
11   
12  from platecom.langview.config import * 
13  import base 
14   
15 -class TestInterfaces(base.icSemanticTestCase):
16 """ 17 """
18
19 -def test_suite():
20 return unittest.TestSuite([ 21 22 # Unit tests 23 ztc.ZopeDocTestSuite( 24 module=PACKAGENAME + '.interfaces', 25 test_class=TestInterfaces), 26 27 # Integration tests that use PloneTestCase 28 ztc.FunctionalDocFileSuite( 29 'test_interfaces.txt', package=PACKAGENAME + '.tests', 30 test_class=base.icSemanticFunctionalTestCase), 31 32 ])
33 34 if __name__ == '__main__': 35 unittest.main(defaultTest='test_suite') 36