#include "test_ccapi_constants.h"
#include "test_ccapi_globals.h"
#include "test_ccapi_check.h"
int check_constants(void) {
BEGIN_TEST("constants");
check_int(ccapi_version_2, 2);
check_int(ccapi_version_3, 3);
check_int(ccapi_version_4, 4);
check_int(ccapi_version_5, 5);
check_int(ccapi_version_6, 6);
check_int(ccNoError , 0 );
check_int(ccIteratorEnd , 201);
check_int(ccErrBadParam , 202);
check_int(ccErrNoMem , 203);
check_int(ccErrInvalidContext , 204);
check_int(ccErrInvalidCCache , 205);
check_int(ccErrInvalidString , 206);
check_int(ccErrInvalidCredentials , 207);
check_int(ccErrInvalidCCacheIterator , 208);
check_int(ccErrInvalidCredentialsIterator , 209);
check_int(ccErrInvalidLock , 210);
check_int(ccErrBadName , 211);
check_int(ccErrBadCredentialsVersion , 212);
check_int(ccErrBadAPIVersion , 213);
check_int(ccErrContextLocked , 214);
check_int(ccErrContextUnlocked , 215);
check_int(ccErrCCacheLocked , 216);
check_int(ccErrCCacheUnlocked , 217);
check_int(ccErrBadLockType , 218);
check_int(ccErrNeverDefault , 219);
check_int(ccErrCredentialsNotFound , 220);
check_int(ccErrCCacheNotFound , 221);
check_int(ccErrContextNotFound , 222);
check_int(ccErrServerUnavailable , 223);
check_int(ccErrServerInsecure , 224);
check_int(ccErrServerCantBecomeUID , 225);
check_int(ccErrTimeOffsetNotSet , 226);
check_int(ccErrBadInternalMessage , 227);
check_int(ccErrNotImplemented , 228);
check_int(cc_credentials_v5, 2);
check_int(cc_lock_read, 0);
check_int(cc_lock_write, 1);
check_int(cc_lock_upgrade, 2);
check_int(cc_lock_downgrade, 3);
check_int(cc_lock_noblock, 0);
check_int(cc_lock_block, 1);
END_TEST_AND_RETURN
}