xref: /libCEED/tests/t004-ceed.c (revision a0154adecfab8547cdc0febbbf40ac009dbe9d1d)
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