예제 #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)