Add demo unit test
[libside.git] / tests / unit / demo.c
CommitLineData
061f74a8
MD
1#include <side/trace.h>
2
3side_static_event(my_provider_event, "myprovider", "myevent", SIDE_LOGLEVEL_DEBUG,
4 side_field_list(side_field_s32("myfield", side_attr_list())),
5 side_attr_list()
6);
7
8int main()
9{
10 side_event(my_provider_event, side_arg_list(side_arg_s32(42)));
11 return 0;
12}
This page took 0.024626 seconds and 4 git commands to generate.