def test_get_by_fake_name(helpers):
        randomName = pytest.fake.sentence()
        with pytest.raises(ValueError) as excinfo:
            pytest.swimlane_instance.apps.get(name=randomName)
        assert str(excinfo.value) == 'No app with name "%s"' % randomName