##############################################################################
#
# Copyright (c) 2003 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Sample tests with a layer that can't be torn down
$Id: sampletests_ntds.py 33295 2005-07-13 12:02:58Z jim $
"""
import unittest
class Layer:
def setUp(self):
pass
setUp = classmethod(setUp)
def tearDown(self):
raise NotImplementedError
tearDown = classmethod(tearDown)
class TestSomething(unittest.TestCase):
layer = Layer
def test_something(self):
pass
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestSomething))
return suite
if __name__ == '__main__':
unittest.main()