コード例 #1
0
ファイル: test_Utils.py プロジェクト: dee42/j5test
def test_catchskip():
    """Tests that a properly decorated method is skipped - this must be run..."""
    assert True
    Utils.skip(
        "This method should be skipped, as it is testing skipping methods")
    raise AssertionError("This test should have been skipped")
コード例 #2
0
ファイル: test_Utils.py プロジェクト: dee42/j5test
def test_skiptest():
    """checks that this method will be skipped"""
    assert True
    Utils.skip(
        "This method should be skipped, as it is testing skipping methods")
    raise AssertionError("This test should have been skipped")
コード例 #3
0
ファイル: test_Utils.py プロジェクト: j5int/j5test
def test_catchskip():
    """Tests that a properly decorated method is skipped - this must be run..."""
    assert True
    Utils.skip("This method should be skipped, as it is testing skipping methods")
    raise AssertionError("This test should have been skipped")
コード例 #4
0
ファイル: test_Utils.py プロジェクト: j5int/j5test
def test_skiptest():
    """checks that this method will be skipped"""
    assert True
    Utils.skip("This method should be skipped, as it is testing skipping methods")
    raise AssertionError("This test should have been skipped")
コード例 #5
0
ファイル: IterativeTester.py プロジェクト: dee42/j5test
 def skipmeth(self):
     Utils.skip(message)
コード例 #6
0
 def skipmeth(self):
     Utils.skip(message)