mirror of
https://github.com/google/pebble.git
synced 2025-03-16 17:11:21 +00:00
11 lines
213 B
C
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;
|
|
}
|