File: enum_validate.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-- 445 bytes parent folder | download
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(MyEnum_valid(MyEnum_VALUE1) == true);
    TEST(MyEnum_valid(MyEnum_VALUE2) == true);
    TEST(MyEnum_valid(MyEnum_VALUE15) == true);
    TEST(MyShortNameEnum_valid(MSNE_VALUE256) == true);
    TEST(MyShortNameEnum_valid(9999) == false);
    
    if (status != 0)
        fprintf(stdout, "\n\nSome tests FAILED!\n");

    return status;
}