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