xref: /libCEED/tests/t000-ceed.c (revision 3ab4fca656a1e01d815a06ccfa0fdd49692deced)
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 
9   CeedInit(argv[1], &ceed);
10   CeedDestroy(&ceed);
11 
12   // Test double destroy is safe
13   CeedDestroy(&ceed);
14   return 0;
15 }
16