def test_isListOfIntegers_8(): assert isListOfIntegers([2, 3, [4]]) == False
def test_isListOfIntegers_9(): assert isListOfIntegers([]) == True
def test_isListOfIntegers_6(): assert isListOfIntegers([2, 3, 'oops', 5]) == False
def test_isListOfIntegers_7(): assert isListOfIntegers([2, 3, 4, 5, 6, 7]) == True
def test_isListOfIntegers_5(): assert isListOfIntegers([2, 3, 4, 5.6, 7]) == False
def test_isListOfIntegers_4(): assert isListOfIntegers([3.4]) == False
def test_isListOfIntegers_3(): assert isListOfIntegers([3]) == True
def test_isListOfIntegers_2(): assert isListOfIntegers(3) == False
def test_isListOfIntegers_1(): assert isListOfIntegers('Fred') == False