~certify-web-dev/twisted/certify-trunk

« back to all changes in this revision

Viewing changes to twisted/trial/itrial.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-01-17 14:52:35 UTC
  • mto: (2.2.3 sid)
  • mto: This revision was merged to the branch mainline in revision 15.
  • Revision ID: james.westby@ubuntu.com-20070117145235-7gaj253qxi5wiq16
Tags: upstream-2.5.0
ImportĀ upstreamĀ versionĀ 2.5.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
 
1
"""Interfaces for Trial.
 
2
"""
 
3
 
2
4
# Copyright (c) 2001-2004 Twisted Matrix Laboratories.
3
5
# See LICENSE for details.
4
6
# Maintainer: Jonathan Lange <jml@twistedmatrix.com>
7
9
 
8
10
 
9
11
class ITestCase(zi.Interface):
 
12
    """DEPRECATED in Twisted 2.5.  This interface will be removed in the next
 
13
    release.  Implementing it has no impact.
 
14
    """
 
15
    
10
16
    def setUp():
11
17
        """I am run before each method is run"""
12
18