xref: /libCEED/tests/t004-ceed.c (revision 80a9ef0545a39c00cdcaab1ca26f8053604f3120)
1 /// @file
2 /// Test creation and destruction of a CEED object
3 /// \test Test creation and destruction of a CEED object
4 #include <ceed.h>
5 
6 int main(int argc, char **argv) {
7   Ceed ceed;
8   bool is_deterministic;
9 
10   CeedInit(argv[1], &ceed);
11   CeedIsDeterministic(ceed, &is_deterministic);
12   CeedDestroy(&ceed);
13   return 0;
14 }
15