File: testcase.cpp

package info (click to toggle)
protozero 1.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,548 kB
  • sloc: cpp: 20,364; sh: 18; makefile: 14
file content (18 lines) | stat: -rw-r--r-- 280 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

#include <testcase.hpp>

#include "testcase.pb.h"

int main() {
    TestFloat::Test msg;

    msg.set_x(0.0);
    write_to_file(msg, "data-zero.pbf");

    msg.set_x(5.34);
    write_to_file(msg, "data-pos.pbf");

    msg.set_x(-1.71);
    write_to_file(msg, "data-neg.pbf");
}