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