File: enum_to_string.c

package info (click to toggle)
nanopb 0.4.9.1-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,676 kB
  • sloc: ansic: 12,144; python: 2,795; cpp: 190; sh: 163; makefile: 85
file content (19 lines) | stat: -rw-r--r-- 523 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <stdio.h>
#include "unittests.h"
#include "enum.pb.h"

int main()
{
    int status = 0;
    TEST(strcmp(MyEnum_name(MyEnum_VALUE1), "VALUE1") == 0);
    TEST(strcmp(MyEnum_name(MyEnum_VALUE2), "VALUE2") == 0);
    TEST(strcmp(MyEnum_name(MyEnum_VALUE15), "VALUE15") == 0);
    TEST(strcmp(MyShortNameEnum_name(MSNE_VALUE256), "MSNE_VALUE256") == 0);
    TEST(strcmp(MyShortNameEnum_name(9999), "unknown") == 0);
    
    if (status != 0)
        fprintf(stdout, "\n\nSome tests FAILED!\n");

    return status;
}