YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
FrameTransformSet_nwc_yarp_test.cpp
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2023-2023 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5
9#include <yarp/os/Property.h>
10#include <yarp/os/Network.h>
11#include <iostream>
12
15
16#include <catch2/catch_amalgamated.hpp>
17#include <harness.h>
18
19TEST_CASE("dev::frameTransformSet_nwc_yarp", "[yarp::dev]")
20{
21 #if defined(DISABLE_FAILING_TESTS)
22 YARP_SKIP_TEST("Skipping failing tests")
23 #endif
24
25 YARP_REQUIRE_PLUGIN("frameTransformSet_nwc_yarp", "device");
26
28 const bool verboseDebug = true;
29
30 SECTION("test the frameTransformSet_nwc_yarp")
31 {
36
37 p_dev.put("device", "frameTransformStorage");
39 p_nws.put("device", "frameTransformSet_nws_yarp");
41
43
46 bool result_att = ww_nws->attach(&pd_dev);
48
51
52 p_nwc.put("device", "frameTransformSet_nwc_yarp");
54
58
60
61 REQUIRE(pd_nwc.view(itf_set));
62
64
65 REQUIRE(pd_nwc .close());
66 }
67
69}
TEST_CASE("dev::frameTransformSet_nwc_yarp", "[yarp::dev]")
A container for a device driver.
Definition PolyDriver.h:23
Helper interface for an object that can wrap/or "attach" to a single other device.
A mini-server for performing network communication in the background.
bool open(const std::string &name) override
Start port operation, with a specific name, with automatically-chosen network parameters.
static bool setLocalMode(bool flag)
Chooses whether communication is process-local.
Definition Network.cpp:1049
A class for storing options and configuration information.
Definition Property.h:33
void exec_frameTransformStorage_test_1(IFrameTransformStorageSet *itfSet, IFrameTransformStorageGet *itfGet, IFrameTransformStorageUtils *itfUtils)
void delay(double seconds)
Wait for a certain number of seconds.
Definition Time.cpp:111