コード例 #1
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_gt_pInt_pint_true():
    assert (Int32(100) > 99) == (100 > 99)
コード例 #2
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_eq_mint_pInt_false():
    assert (-100 == Int32(100)) == (-100 == 100)
コード例 #3
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_lt_pInt_pInt_false():
    assert (Int32(100) < Int32(99)) == (100 < 99)
コード例 #4
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_eq_pint_pInt_false():
    assert (100 == Int32(99)) == (100 == 99)
コード例 #5
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_eq_mint_mInt_false():
    assert (-100 == -Int32(101)) == (-100 == -101)
コード例 #6
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_ge_pInt_mint():
    assert (Int32(100) >= -100) == (100 >= -100)
コード例 #7
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_eq_mInt_pint_false():
    assert (-Int32(100) == 100) == (-100 == 100)
コード例 #8
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_gt_mint_mInt_true():
    assert (-100 > Int32(-101)) == (-100 > -101)
コード例 #9
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_gt_mint_pInt():
    assert (-100 > Int32(100)) == (-100 > 100)
コード例 #10
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_gt_pint_pInt_true():
    assert (100 > Int32(99)) == (100 > 99)
コード例 #11
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_gt_mint_mInt_false():
    assert (-100 > Int32(-99)) == (-100 > -99)
コード例 #12
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_gt_pint_pInt_false():
    assert (100 > Int32(101)) == (100 > 101)
コード例 #13
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_gt_pInt_mint():
    assert (Int32(100) > -100) == (100 > -100)
コード例 #14
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_gt_mInt_pint():
    assert (-Int32(100) > 100) == (-100 > 100)
コード例 #15
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_eq_pInt_pint_false():
    assert (Int32(100) == 99) == (100 == 99)
コード例 #16
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_gt_pint_mInt():
    assert (100 > -Int32(100)) == (100 > -100)
コード例 #17
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_ge_mInt_pint():
    assert (-Int32(100) >= 100) == (-100 >= 100)
コード例 #18
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_ge_mInt_mInt_eq_true():
    assert (-Int32(100) >= -Int32(100)) == (-100 >= -100)
コード例 #19
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_eq_pInt_mint_false():
    assert (Int32(100) == -100) == (100 == -100)
コード例 #20
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_ge_pInt_pint_false():
    assert (Int32(100) >= 101) == (100 >= 101)
コード例 #21
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_eq_pint_pInt_true():
    assert (100 == Int32(100)) == (100 == 100)
コード例 #22
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_ge_pInt_pint_eq_true():
    assert (Int32(100) >= 100) == (100 >= 100)
コード例 #23
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_eq_mint_mInt_true():
    assert (-100 == -Int32(100)) == (-100 == -100)
コード例 #24
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_ge_pInt_pint_true():
    assert (Int32(100) >= 99) == (100 >= 99)
コード例 #25
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_eq_pint_mInt_false():
    assert (100 == -Int32(100)) == (100 == -100)
コード例 #26
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_ge_mInt_mint_false():
    assert (-Int32(100) >= -99) == (-100 >= -99)
コード例 #27
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_lt_pInt_pInt_true():
    assert (Int32(100) < Int32(101)) == (100 < 101)
コード例 #28
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_ge_mInt_mint_true():
    assert (-Int32(100) >= -101) == (-100 >= -101)
コード例 #29
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_lt_mInt_mInt_true():
    assert (-Int32(100) < -Int32(99)) == (-100 < -99)
コード例 #30
0
ファイル: test_rel.py プロジェクト: e5pe0n/algorithm-training
def test_le_pint_mInt():
    assert (100 <= -Int32(100)) == (100 <= -100)