YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
fakeLaser_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::sig;
17using namespace yarp::os;
18
19TEST_CASE("dev::FakeLaserTest", "[yarp::dev]")
20{
21 YARP_REQUIRE_PLUGIN("fakeLaser", "device");
22
23 Network::setLocalMode(true);
24
25 SECTION("Checking FakeLaserTest device")
26 {
28 IRangefinder2D* irng = nullptr;
29
31 {
33 las_cfg.put("device", "fakeLaser");
34 las_cfg.put("test", "use_constant");
35 Property& cm_cfg= las_cfg.addGroup("CONSTANT_MODE");
36 cm_cfg.put("const_distance", 0.5);
39 }
40
41 //execute tests
43
44 //"Close all polydrivers and check"
46 }
47
48 Network::setLocalMode(false);
49}
A generic interface for planar laser range finders.
A container for a device driver.
Definition PolyDriver.h:23
A mini-server for performing network communication in the background.
void close() override
Stop port activity.
bool open(const std::string &name) override
Start port operation, with a specific name, with automatically-chosen network parameters.
A class for storing options and configuration information.
Definition Property.h:33
TEST_CASE("dev::FakeLaserTest", "[yarp::dev]")
void exec_iRangefinder2D_test_1(IRangefinder2D *irf)
For streams capable of holding different kinds of content, check what they actually have.
An interface to the operating system, including Port based communication.