TU-Programmieren_2/exercise7/task3.test.cpp
2025-04-09 10:22:44 +02:00

18 lines
368 B
C++

/// @file
/// @brief Task3: tests
#include "task3.hpp" // task3::Point
#include "task3.concept.hpp" // task3::PointConcept
#include <iostream> // std::cout, sts::endl
int main() {
using namespace task3;
// static_assert(PointConcept<Point>); // todo: uncomment
std::cout << "task3.test.cpp: all asserts passed" << std::endl;
return 0;
}