TU-Programmieren_2/lab3/modules/iue-other/library.test.cpp
2025-04-09 10:22:44 +02:00

12 lines
186 B
C++

#include "iue-other/library.hpp"
#include <cassert> // assert
int main() {
auto w = iue::other::Widget();
assert(w.calc() == 5);
assert(iue::other::calc(w) == 5);
return 0;
}