carla/LibCarla/source/test/common/test_miscellaneous.cpp

14 lines
366 B
C++

// Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma
// de Barcelona (UAB).
//
// This work is licensed under the terms of the MIT license.
// For a copy, see <https://opensource.org/licenses/MIT>.
#include "test.h"
#include <carla/Version.h>
TEST(miscellaneous, version) {
std::cout << "LibCarla " << carla::version() << std::endl;
}