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.utils.config import *
13 import base
14
18
22
24 return unittest.TestSuite([
25
26
27
28
29
30
31
32
33 ztc.FunctionalDocFileSuite(
34 'test_emptiness_adapter.txt',
35 package=PACKAGENAME + '.tests',
36 test_class=FunctionalTestCase),
37
38 ])
39
40 if __name__ == '__main__':
41 unittest.main(defaultTest='test_suite')
42