pebble/third_party/nanopb/tests/regression/issue_453/test.c
2025-01-27 11:38:16 -08:00

11 lines
213 B
C

#include "test.pb.h"
#include "unittests.h"
int main()
{
int status = 0;
MyMessage msg = MyMessage_init_default;
TEST(msg.myfield >= 1.23399f);
TEST(msg.myfield <= 1.23401f);
return status;
}