Best Python code snippet using Testify_python
test_asserts.py
Source:test_asserts.py  
...58    with AssertRaises(AssertionError):59        assert_eq(1, 1, tolerance="s")60def test_assert_ordering():61    # ints62    assert_gt(2, 1)63    with AssertRaises(AssertionError):64        assert_gt(1, 1)65    with AssertRaises(AssertionError):66        assert_gt(0, 1)67    assert_ge(2, 1)68    assert_ge(1, 1)69    with AssertRaises(AssertionError):70        assert_ge(0, 1)71    with AssertRaises(AssertionError):72        assert_lt(2, 1)73    with AssertRaises(AssertionError):74        assert_lt(1, 1)75    assert_lt(0, 1)76    with AssertRaises(AssertionError):77        assert_le(2, 1)78    assert_le(1, 1)79    assert_lt(0, 1)80    # floats (tolerance isn't supported)81    assert_gt(2.5, 1.5)82    with AssertRaises(AssertionError):83        assert_gt(1.5, 1.5)84    with AssertRaises(AssertionError):85        assert_gt(0.5, 1.5)86    assert_ge(2.5, 1.5)87    assert_ge(1.5, 1.5)88    with AssertRaises(AssertionError):89        assert_ge(0.5, 1.5)90    with AssertRaises(AssertionError):91        assert_lt(2.5, 1.5)92    with AssertRaises(AssertionError):93        assert_lt(1.5, 1.5)94    assert_lt(0.5, 1.5)95    with AssertRaises(AssertionError):96        assert_le(2.5, 1.5)97    assert_le(1.5, 1.5)98    assert_lt(0.5, 1.5)99    # strings100    assert_gt("c", "b")101    with AssertRaises(AssertionError):102        assert_gt("b", "b")103    with AssertRaises(AssertionError):104        assert_gt("a", "b")105    assert_ge("c", "b")106    assert_ge("b", "b")107    with AssertRaises(AssertionError):108        assert_ge("a", "b")109    with AssertRaises(AssertionError):110        assert_lt("c", "b")111    with AssertRaises(AssertionError):112        assert_lt("b", "b")113    assert_lt("a", "b")114    with AssertRaises(AssertionError):115        assert_le("c", "b")116    assert_le("b", "b")117    assert_lt("a", "b")118def test_assert_ne():...test_BindingData.py
Source:test_BindingData.py  
1# -*- coding: utf-8 -*-2import Sofa3import SofaTest4def createScene(rootNode):5    rootNode.addNewData("aField", "TestField", "help message", "float", 1.0)6    field = rootNode.getData("aField")7    ASSERT_NEQ(field, None)8    ### Check isPersistant/setPersistant9    ASSERT_FALSE( field.isPersistant() )10    field.setPersistant(True)11    ASSERT_TRUE( field.isPersistant() )12    ### Check isSet/unset13    ASSERT_TRUE( field.isSet() )14    field.unset()15    ASSERT_FALSE( field.isSet() )16    ### Check the hasParent/parentPath17    # Disabled, an API change in SOFA(sofa-framework/sofa#2354) make this test to fail18    # see https://github.com/sofa-framework/SofaPython/issues/119    # ASSERT_EQ( field.hasParent(), field.getParentPath() == True )20    ### SetValueString21    t = field.getCounter()22    field.setValueString("2.0")23    ASSERT_NEQ(field.getCounter(), t)24    ### Different ways to get values.25    ASSERT_GT(field.getValue(0), 1.5)26    ASSERT_GT(field.value, 1.5)27    t = field.getCounter()28    field.value = 3.029    ASSERT_NEQ(field.getCounter(), t)30    ASSERT_GT(field.getValue(0), 2.5)31    ASSERT_GT(field.value, 2.5)32    ### What happens if we do something wrong ?33    t = field.getCounter()34    field.setValueString("7.0 8.0 9.0")35    ASSERT_NEQ(field.getCounter(), t)36    #TODO(dmarchal 2017-11-17) well returning zero size and allowing a zero index looks not really37    #good API design.38    ASSERT_EQ(field.getSize(), 0)39    ASSERT_GT(field.getValue(0), 6.0)40    ASSERT_EQ(type(field.isRequired()), bool)41    ASSERT_EQ(type(field.isReadOnly()), bool)...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
