예제 #1
0
def test_gt_pInt_pint_true():
    assert (Int32(100) > 99) == (100 > 99)
예제 #2
0
def test_eq_mint_pInt_false():
    assert (-100 == Int32(100)) == (-100 == 100)
예제 #3
0
def test_lt_pInt_pInt_false():
    assert (Int32(100) < Int32(99)) == (100 < 99)
예제 #4
0
def test_eq_pint_pInt_false():
    assert (100 == Int32(99)) == (100 == 99)
예제 #5
0
def test_eq_mint_mInt_false():
    assert (-100 == -Int32(101)) == (-100 == -101)
예제 #6
0
def test_ge_pInt_mint():
    assert (Int32(100) >= -100) == (100 >= -100)
예제 #7
0
def test_eq_mInt_pint_false():
    assert (-Int32(100) == 100) == (-100 == 100)
예제 #8
0
def test_gt_mint_mInt_true():
    assert (-100 > Int32(-101)) == (-100 > -101)
예제 #9
0
def test_gt_mint_pInt():
    assert (-100 > Int32(100)) == (-100 > 100)
예제 #10
0
def test_gt_pint_pInt_true():
    assert (100 > Int32(99)) == (100 > 99)
예제 #11
0
def test_gt_mint_mInt_false():
    assert (-100 > Int32(-99)) == (-100 > -99)
예제 #12
0
def test_gt_pint_pInt_false():
    assert (100 > Int32(101)) == (100 > 101)
예제 #13
0
def test_gt_pInt_mint():
    assert (Int32(100) > -100) == (100 > -100)
예제 #14
0
def test_gt_mInt_pint():
    assert (-Int32(100) > 100) == (-100 > 100)
예제 #15
0
def test_eq_pInt_pint_false():
    assert (Int32(100) == 99) == (100 == 99)
예제 #16
0
def test_gt_pint_mInt():
    assert (100 > -Int32(100)) == (100 > -100)
예제 #17
0
def test_ge_mInt_pint():
    assert (-Int32(100) >= 100) == (-100 >= 100)
예제 #18
0
def test_ge_mInt_mInt_eq_true():
    assert (-Int32(100) >= -Int32(100)) == (-100 >= -100)
예제 #19
0
def test_eq_pInt_mint_false():
    assert (Int32(100) == -100) == (100 == -100)
예제 #20
0
def test_ge_pInt_pint_false():
    assert (Int32(100) >= 101) == (100 >= 101)
예제 #21
0
def test_eq_pint_pInt_true():
    assert (100 == Int32(100)) == (100 == 100)
예제 #22
0
def test_ge_pInt_pint_eq_true():
    assert (Int32(100) >= 100) == (100 >= 100)
예제 #23
0
def test_eq_mint_mInt_true():
    assert (-100 == -Int32(100)) == (-100 == -100)
예제 #24
0
def test_ge_pInt_pint_true():
    assert (Int32(100) >= 99) == (100 >= 99)
예제 #25
0
def test_eq_pint_mInt_false():
    assert (100 == -Int32(100)) == (100 == -100)
예제 #26
0
def test_ge_mInt_mint_false():
    assert (-Int32(100) >= -99) == (-100 >= -99)
예제 #27
0
def test_lt_pInt_pInt_true():
    assert (Int32(100) < Int32(101)) == (100 < 101)
예제 #28
0
def test_ge_mInt_mint_true():
    assert (-Int32(100) >= -101) == (-100 >= -101)
예제 #29
0
def test_lt_mInt_mInt_true():
    assert (-Int32(100) < -Int32(99)) == (-100 < -99)
예제 #30
0
def test_le_pint_mInt():
    assert (100 <= -Int32(100)) == (100 <= -100)