示例#1
0
 def test_5(self):
     with pytest.raises(AssertionError):
         check_range(0x100, length=None)
示例#2
0
 def test_3(self):
     with pytest.raises(AssertionError):
         check_range(None, end=100)
示例#3
0
 def test_4(self):
     with pytest.raises(AssertionError):
         check_range(0x100, end=None)
示例#4
0
 def test_1(self):
     assert check_range(0, end=0x1ff) == (0, 0x1ff)
示例#5
0
 def test_2(self):
     assert check_range(0, length=0x200) == (0, 0x1ff)
示例#6
0
 def test_5(self):
     with pytest.raises(AssertionError):
         check_range(0x100, length=None)
示例#7
0
 def test_4(self):
     with pytest.raises(AssertionError):
         check_range(0x100, end=None)
示例#8
0
 def test_3(self):
     with pytest.raises(AssertionError):
         check_range(None, end=100)
示例#9
0
 def test_2(self):
     assert check_range(0, length=0x200) == (0, 0x1ff)
示例#10
0
 def test_1(self):
     assert check_range(0, end=0x1ff) == (0, 0x1ff)