00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 static const char *rcsid = "$Header: /export/cvs-gridlab/wp-1/Codes/GATEngine/C-reference/test/simple/simple_tests.c,v 1.2 2004/01/20 13:43:00 merzky Exp $";
00031
00032
00033
00034 #include <stdio.h>
00035
00036
00037
00038 #include <GAT.h>
00039 #include <GATTestUtils.h>
00040
00041 int main (void)
00042 {
00043 GATContext context;
00044
00045 GAT_TEST_INIT (-1);
00046 GAT_TEST_SUITE ("Engine and Adaptor Loading Tests");
00047
00048 context = GATContext_Create ();
00049
00050 GAT_TEST_START ("Loading GAT engine");
00051 GAT_TEST (context);
00052 GAT_TEST_STOP ();
00053
00054 return (0);
00055 }
00056