Cプログラムをテストするのは初めてです。テストしたい次のヘッダーファイルがあります。
#ifndef CALCULATOR_HELPER_H
#define CALCULATOR_HELPER_H
#endif
int add(int num1, int num2) {
return num1 + num2;
}
フレームワークCUnitを使用してテストしています。NetbeansをIDEとして使用しています。以下はコードです。
#include <stdio.h>
#include <stdlib.h>
#include "CUnit/Basic.h"
#include "calculator_helper.h"
/*
* CUnit Test Suite
*/
int init_suite(void) {
return 0;
}
int clean_suite(void) {
return 0;
}
/* IMPORTANT PART: */
void testAdd() {
int num1 = 2;
int num2 = 2;
int result = add(num1, num2);
if (result == 4) {
CU_ASSERT(0);
}
}
int main() {
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("newcunittest", init_suite, clean_suite);
if (NULL == pSuite) {
CU_cleanup_registry();
return CU_get_error();
}
/* Add the tests to the suite */
if ((NULL == CU_add_test(pSuite, "testAdd", testAdd))) {
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();
}
問題
テストをビルドしているときに、ビルドテストが失敗します。より具体的には、私はこれを取得します:
関数`add':NetBeans / Calculator / calculator_helper.h:12: 「追加」の複数の定義 build / Debug / GNU-Linux-x86 / tests / tests / newcunittest.o:NetBeans / Calculator /./calculator_helper.h:12: ここで最初に定義されたcollect2:エラー:ldが1つの終了ステータスを返しました
なぜこのエラーが発生するのか誰か教えてもらえますか?グーグルで検索してみましたが、うまくいきませんでした。