mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-18 21:30:38 +01:00
12 lines
223 B
C++
12 lines
223 B
C++
#include <quiz.h>
|
|
#include <poincare.h>
|
|
#include <assert.h>
|
|
|
|
QUIZ_CASE(poincare_integer) {
|
|
assert(Integer(123) == Integer(123));
|
|
}
|
|
|
|
QUIZ_CASE(poincare_integer_add) {
|
|
assert(Integer(123)+Integer(456) == Integer(579));
|
|
}
|