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