/** *Licensed to the Apache Software Foundation (ASF) under one *or more contributor license agreements. See the NOTICE file *distributed with this work for additional information *regarding copyright ownership. The ASF licenses this file *to you under the Apache License, Version 2.0 (the *"License"); you may not use this file except in compliance *with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * *Unless required by applicable law or agreed to in writing, *software distributed under the License is distributed on an *"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the *specific language governing permissions and limitations *under the License. */ /* * test.c * * \date Jul 16, 2010 * \author Apache Celix Project Team * \copyright Apache License, Version 2.0 */ #include #include #include "CUnit/Basic.h" #include "framework.h" void test_framework_create(void) { struct framework * framework; apr_pool_t *memoryPool; apr_status_t rv = apr_initialize(); if (rv != APR_SUCCESS) { CU_FAIL("Could not initialize APR"); return; } apr_pool_create(&memoryPool, NULL); framework_create(&framework, memoryPool); CU_ASSERT(framework == NULL); } int main (int argc, char** argv) { CU_pSuite pSuite = NULL; /* initialize the CUnit test registry */ if (CUE_SUCCESS != CU_initialize_registry()) return CU_get_error(); /* add a suite to the registry */ pSuite = CU_add_suite("Suite_1", NULL, NULL); if (NULL == pSuite) { CU_cleanup_registry(); return CU_get_error(); } /* add the tests to the suite */ if ( NULL == CU_add_test(pSuite, "Framework Creation Test", test_framework_create) // || NULL == CU_add_test(pSuite, "List Add Test", test_linkedList_add) ) { CU_cleanup_registry(); return CU_get_error(); } /* Run all tests using the CUnit Basic interface */ CU_basic_set_mode(CU_BRM_VERBOSE); CU_basic_run_tests(); CU_cleanup_registry(); return CU_get_error(); }