canceltest.py 298 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#!/usr/bin/env python

from avocado import Test
from avocado import main


class CancelTest(Test):

    """
    Example test that cancels the current test from inside the test.
    """

    def test(self):
        self.cancel("This should end with CANCEL.")


if __name__ == "__main__":
    main()