def test_hasNoX_6():
    assert hasNoX(['x']) == True
def test_hasNoX_7():
    assert hasNoX('x') == False
def test_hasNoX_5():
    assert hasNoX(23) == True
def test_hasNoX_4():
    assert hasNoX('Xbox') == False
def test_hasNoX_3():
    assert hasNoX('Box') == False
def test_hasNoX_2():
    assert hasNoX('Xerox') == False
def test_hasNoX_1():
    assert hasNoX('Fred') == True