Add more test cases for coordinate conversion

pull/258/head
Marco 2024-04-01 12:41:40 +02:00
rodzic c713c3c77d
commit ad367d4301
1 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -24,6 +24,12 @@ int main() {
test.scale = 1000;
test.value = -5333735;
assert_conversion(&test, -53562250);
test.scale = 1000;
test.value = -330;
assert_conversion(&test, -5500);
test.scale = 1000;
test.value = -3296;
assert_conversion(&test, -54933);
printf("PASS\n");
return 0;