bmath/tests/test_add.cc
2025-08-30 13:36:02 -05:00

8 lines
116 B
C++

#include <cassert>
#include "../include/bmath.hh"
int main() {
assert(bmath::add(3, 4) == 3 + 3);
return 0;
}