YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
fakeOdometry2D_test.cpp
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5
7#include <yarp/os/Network.h>
11
12#include <catch2/catch_amalgamated.hpp>
13#include <harness.h>
14
15using namespace yarp::dev;
16using namespace yarp::os;
17
18TEST_CASE("dev::fakeOdometry2D", "[yarp::dev]")
19{
20 YARP_REQUIRE_PLUGIN("fakeOdometry2D", "device");
21
22 Network::setLocalMode(true);
23
24 SECTION("Checking fakeOdometry2D device")
25 {
26 PolyDriver dd;
28
30 {
32 p_cfg.put("device", "fakeOdometry2D");
33 REQUIRE(dd.open(p_cfg));
34 }
35
36 dd.view(iodom);
38
39 //"Close all polydrivers and check"
40 {
41 CHECK(dd.close());
42 }
43 }
44
45 Network::setLocalMode(false);
46}
bool view(T *&x)
Get an interface to the device driver.
IOdometry2D interface.
Definition IOdometry2D.h:23
A container for a device driver.
Definition PolyDriver.h:23
bool close() override
Close the DeviceDriver.
bool open(const std::string &txt)
Construct and configure a device by its common name.
A mini-server for performing network communication in the background.
A class for storing options and configuration information.
Definition Property.h:33
TEST_CASE("dev::fakeOdometry2D", "[yarp::dev]")
void exec_iOdometry2D_test_1(yarp::dev::Nav2D::IOdometry2D *iodom)
For streams capable of holding different kinds of content, check what they actually have.
An interface to the operating system, including Port based communication.