예제 #1
0
def test_connection_url_checks():
    import pytest
    with pytest.raises(Exception):
        helpers.run_as_process(Ros, host)

    with pytest.raises(Exception):
        helpers.run_as_process(Ros, u'http://%s:%d' % (host, port))
예제 #2
0
def test_param_manipulation():
    helpers.run_as_process(run_param_manipulation)
예제 #3
0
def test_topic_pubsub():
    helpers.run_as_process(run_topic_pubsub)
예제 #4
0
def test_reconnect_does_not_trigger_on_client_close():
    helpers.run_as_process(run_reconnect_does_not_trigger_on_client_close)
예제 #5
0
def test_tf_test():
    helpers.run_as_process(run_tf_test)
예제 #6
0
def test_empty_service():
    helpers.run_as_process(run_empty_service)
예제 #7
0
def test_add_two_ints_service():
    helpers.run_as_process(run_add_two_ints_service)
예제 #8
0
def test_rosapi_topics_url():
    helpers.run_as_process(run_rosapi_topics, url)
예제 #9
0
def test_rosapi_topics():
    helpers.run_as_process(run_rosapi_topics, host, port)
예제 #10
0
def test_rosapi_topics_blocking():
    helpers.run_as_process(run_rosapi_topics_blocking, host, port)