Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ static HRESULT MU_C2(real_, CREATE_IFABRICINSTANCE_NAME(IFabricZZZZ))(IFabricZZZ

BEGIN_TEST_SUITE(TEST_SUITE_NAME_FROM_CMAKE)

TEST_SUITE_INITIALIZE(suite_init)
TIMED_TEST_SUITE_INITIALIZE(suite_init, TIMED_TEST_DEFAULT_TIMEOUT_MS)
{
ASSERT_ARE_EQUAL(int, 0, real_gballoc_hl_init(NULL, NULL));

Expand All @@ -67,7 +67,7 @@ TEST_SUITE_INITIALIZE(suite_init)

}

TEST_SUITE_CLEANUP(suite_cleanup)
TIMED_TEST_SUITE_CLEANUP(suite_cleanup)
{
umock_c_deinit();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@

/*for the purpose of these tests, there's going to be a phony IFabricZZZ interface*/

#include "c_pal/timed_test_suite.h"

#include "umock_c/umock_c_ENABLE_MOCKS.h" // ============================== ENABLE_MOCKS
#include "c_pal/gballoc_hl.h"
#include "c_pal/gballoc_hl_redirect.h"
Expand All @@ -41,4 +43,4 @@

#include "hfabriczzzz.h"

#endif // H_FABRIC_MACRO_GENERATOR_UT_PCH_H
#endif // H_FABRIC_MACRO_GENERATOR_UT_PCH_H
2 changes: 1 addition & 1 deletion tests/common_argc_argv_int/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ set(${theseTestsName}_h_files

include_directories($<TARGET_PROPERTY:FabricClient,INTERFACE_INCLUDE_DIRECTORIES>)

build_test_artifacts(${theseTestsName} "tests/sf_c_util" ADDITIONAL_LIBS c_util debug FabricUUIDD optimized FabricUUID c_pal_reals sf_c_util)
build_test_artifacts(${theseTestsName} "tests/sf_c_util" ADDITIONAL_LIBS c_pal c_util debug FabricUUIDD optimized FabricUUID c_pal_reals sf_c_util)
7 changes: 4 additions & 3 deletions tests/common_argc_argv_int/common_argc_argv_int.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,17 @@
#include "c_pal/gballoc_hl_redirect.h"

#include "c_pal/string_utils.h"
#include "c_pal/timed_test_suite.h"

#include "sf_c_util/common_argc_argv.h"

BEGIN_TEST_SUITE(TEST_SUITE_NAME_FROM_CMAKE)

TEST_SUITE_INITIALIZE(suite_init)
TIMED_TEST_SUITE_INITIALIZE(suite_init, TIMED_TEST_DEFAULT_TIMEOUT_MS)
{
}

TEST_SUITE_CLEANUP(suite_cleanup)
TIMED_TEST_SUITE_CLEANUP(suite_cleanup)
{
}

Expand Down Expand Up @@ -310,4 +311,4 @@ TEST_FUNCTION(ARGC_ARGV_concat_from_2_plus_2_yields_4)
}


END_TEST_SUITE(TEST_SUITE_NAME_FROM_CMAKE)
END_TEST_SUITE(TEST_SUITE_NAME_FROM_CMAKE)
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ set(${theseTestsName}_h_files

include_directories($<TARGET_PROPERTY:FabricClient,INTERFACE_INCLUDE_DIRECTORIES>)

build_test_artifacts(${theseTestsName} "tests/sf_c_util" ADDITIONAL_LIBS sf_c_util c_util com_wrapper debug FabricUUIDD optimized FabricUUID c_pal_reals
build_test_artifacts(${theseTestsName} "tests/sf_c_util" ADDITIONAL_LIBS c_pal sf_c_util c_util com_wrapper debug FabricUUIDD optimized FabricUUID c_pal_reals
ENABLE_TEST_FILES_PRECOMPILED_HEADERS "${CMAKE_CURRENT_LIST_DIR}/configuration_package_change_handler_ut_pch.h")
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ static void on_umock_c_error(UMOCK_C_ERROR_CODE error_code)

BEGIN_TEST_SUITE(TEST_SUITE_NAME_FROM_CMAKE)

TEST_SUITE_INITIALIZE(suite_init)
TIMED_TEST_SUITE_INITIALIZE(suite_init, TIMED_TEST_DEFAULT_TIMEOUT_MS)
{
ASSERT_ARE_EQUAL(int, 0, real_gballoc_hl_init(NULL, NULL));

Expand All @@ -82,7 +82,7 @@ TEST_SUITE_INITIALIZE(suite_init)
REGISTER_GBALLOC_HL_GLOBAL_MOCK_HOOK();
}

TEST_SUITE_CLEANUP(suite_cleanup)
TIMED_TEST_SUITE_CLEANUP(suite_cleanup)
{
umock_c_deinit();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@

#include "c_pal/interlocked.h" /*included for mocking reasons - it will prohibit creation of mocks belonging to interlocked.h*/

#include "c_pal/timed_test_suite.h"

#include "umock_c/umock_c_ENABLE_MOCKS.h" // ============================== ENABLE_MOCKS

#include "c_pal/gballoc_hl.h"
Expand All @@ -37,4 +39,4 @@
#include "sf_c_util/fabric_configuration_package_change_handler_com.h"
#include "sf_c_util/configuration_package_change_handler.h"

#endif // CONFIGURATION_PACKAGE_CHANGE_HANDLER_UT_PCH_H
#endif // CONFIGURATION_PACKAGE_CHANGE_HANDLER_UT_PCH_H
4 changes: 2 additions & 2 deletions tests/configuration_reader_ut/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Copyright (c) Microsoft. All rights reserved.
#Copyright (c) Microsoft. All rights reserved.
#Licensed under the MIT license. See LICENSE file in the project root for full license information.

set(theseTestsName configuration_reader_ut)
Expand All @@ -19,5 +19,5 @@ set(${theseTestsName}_h_files

include_directories($<TARGET_PROPERTY:FabricClient,INTERFACE_INCLUDE_DIRECTORIES>)

build_test_artifacts(${theseTestsName} "tests/sf_c_util" ADDITIONAL_LIBS debug FabricUUIDD optimized FabricUUID c_pal_reals c_util_reals c_util_test_helpers
build_test_artifacts(${theseTestsName} "tests/sf_c_util" ADDITIONAL_LIBS c_pal debug FabricUUIDD optimized FabricUUID c_pal_reals c_util_reals c_util_test_helpers
ENABLE_TEST_FILES_PRECOMPILED_HEADERS "${CMAKE_CURRENT_LIST_DIR}/configuration_reader_ut_pch.h")
6 changes: 3 additions & 3 deletions tests/configuration_reader_ut/configuration_reader_ut.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Microsoft. All rights reserved.
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

#include "configuration_reader_ut_pch.h"
Expand Down Expand Up @@ -114,7 +114,7 @@ static void setup_expectation_read_double_values(void)

BEGIN_TEST_SUITE(TEST_SUITE_NAME_FROM_CMAKE)

TEST_SUITE_INITIALIZE(suite_init)
TIMED_TEST_SUITE_INITIALIZE(suite_init, TIMED_TEST_DEFAULT_TIMEOUT_MS)
{
ASSERT_ARE_EQUAL(int, 0, real_gballoc_hl_init(NULL, NULL));

Expand All @@ -139,7 +139,7 @@ TEST_SUITE_INITIALIZE(suite_init)
REGISTER_TYPE(LPCWSTR, const_wcharptr);
}

TEST_SUITE_CLEANUP(suite_cleanup)
TIMED_TEST_SUITE_CLEANUP(suite_cleanup)
{
umock_c_deinit();

Expand Down
4 changes: 3 additions & 1 deletion tests/configuration_reader_ut/configuration_reader_ut_pch.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@

#include "c_pal/interlocked.h" /*included for mocking reasons - it will prohibit creation of mocks belonging to interlocked.h - at the moment verified through int tests - this is porting legacy code, temporary solution*/

#include "c_pal/timed_test_suite.h"

#include "umock_c/umock_c_ENABLE_MOCKS.h" // ============================== ENABLE_MOCKS
#include "c_pal/gballoc_hl.h"
#include "c_pal/gballoc_hl_redirect.h"
Expand All @@ -55,4 +57,4 @@

#include "sf_c_util/configuration_reader.h"

#endif // CONFIGURATION_READER_UT_PCH_H
#endif // CONFIGURATION_READER_UT_PCH_H
4 changes: 2 additions & 2 deletions tests/fabric_async_op_cb_ut/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Copyright (c) Microsoft. All rights reserved.
#Copyright (c) Microsoft. All rights reserved.
#Licensed under the MIT license. See LICENSE file in the project root for full license information.

set(theseTestsName fabric_async_op_cb_ut)
Expand All @@ -17,5 +17,5 @@ set(${theseTestsName}_h_files

include_directories($<TARGET_PROPERTY:FabricClient,INTERFACE_INCLUDE_DIRECTORIES>)

build_test_artifacts(${theseTestsName} "tests/sf_c_util" ADDITIONAL_LIBS c_util debug FabricUUIDD optimized FabricUUID c_pal_reals
build_test_artifacts(${theseTestsName} "tests/sf_c_util" ADDITIONAL_LIBS c_pal c_util debug FabricUUIDD optimized FabricUUID c_pal_reals
ENABLE_TEST_FILES_PRECOMPILED_HEADERS "${CMAKE_CURRENT_LIST_DIR}/fabric_async_op_cb_ut_pch.h")
6 changes: 3 additions & 3 deletions tests/fabric_async_op_cb_ut/fabric_async_op_cb_ut.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Microsoft. All rights reserved.
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

#include "fabric_async_op_cb_ut_pch.h"
Expand All @@ -19,7 +19,7 @@ static void on_umock_c_error(UMOCK_C_ERROR_CODE error_code)

BEGIN_TEST_SUITE(TEST_SUITE_NAME_FROM_CMAKE)

TEST_SUITE_INITIALIZE(suite_init)
TIMED_TEST_SUITE_INITIALIZE(suite_init, TIMED_TEST_DEFAULT_TIMEOUT_MS)
{
ASSERT_ARE_EQUAL(int, 0, real_gballoc_hl_init(NULL, NULL));

Expand All @@ -28,7 +28,7 @@ TEST_SUITE_INITIALIZE(suite_init)
REGISTER_GBALLOC_HL_GLOBAL_MOCK_HOOK();
}

TEST_SUITE_CLEANUP(suite_cleanup)
TIMED_TEST_SUITE_CLEANUP(suite_cleanup)
{
umock_c_deinit();

Expand Down
4 changes: 3 additions & 1 deletion tests/fabric_async_op_cb_ut/fabric_async_op_cb_ut_pch.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@

#include "c_pal/interlocked.h" /*included for mocking reasons - it will prohibit creation of mocks belonging to interlocked.h - at the moment verified through int tests - this is porting legacy code, temporary solution*/

#include "c_pal/timed_test_suite.h"

#include "umock_c/umock_c_ENABLE_MOCKS.h" // ============================== ENABLE_MOCKS

#include "c_pal/gballoc_hl.h"
Expand All @@ -28,4 +30,4 @@

#include "sf_c_util/fabric_async_op_cb.h"

#endif // FABRIC_ASYNC_OP_CB_UT_PCH_H
#endif // FABRIC_ASYNC_OP_CB_UT_PCH_H
4 changes: 2 additions & 2 deletions tests/fabric_async_op_sync_wrapper_ut/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Copyright (c) Microsoft. All rights reserved.
#Copyright (c) Microsoft. All rights reserved.
#Licensed under the MIT license. See LICENSE file in the project root for full license information.

set(theseTestsName fabric_async_op_sync_wrapper_ut)
Expand Down Expand Up @@ -32,4 +32,4 @@ testasyncoperation.h

include_directories($<TARGET_PROPERTY:FabricClient,INTERFACE_INCLUDE_DIRECTORIES>)

build_test_artifacts(${theseTestsName} "tests/sf_c_util" ADDITIONAL_LIBS c_util debug FabricUUIDD optimized FabricUUID com_wrapper synchronization c_pal_reals sf_c_util)
build_test_artifacts(${theseTestsName} "tests/sf_c_util" ADDITIONAL_LIBS c_pal c_util debug FabricUUIDD optimized FabricUUID com_wrapper synchronization c_pal_reals sf_c_util)
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ static HRESULT my_TEST_FABRIC_ASYNC_OPERATION_HANDLE_ITestAsyncOperation_test_fa

BEGIN_TEST_SUITE(TEST_SUITE_NAME_FROM_CMAKE)

TEST_SUITE_INITIALIZE(suite_init)
TIMED_TEST_SUITE_INITIALIZE(suite_init, TIMED_TEST_DEFAULT_TIMEOUT_MS)
{
ASSERT_ARE_EQUAL(int, 0, real_gballoc_hl_init(NULL, NULL));

Expand All @@ -113,7 +113,7 @@ TEST_SUITE_INITIALIZE(suite_init)
REGISTER_UMOCK_ALIAS_TYPE(TEST_ASYNC_OPERATION_CONTEXT_HANDLE_DESTROY_FUNC, void*);
}

TEST_SUITE_CLEANUP(suite_cleanup)
TIMED_TEST_SUITE_CLEANUP(suite_cleanup)
{
umock_c_deinit();

Expand Down
4 changes: 2 additions & 2 deletions tests/fabric_async_op_wrapper_ut/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Copyright (c) Microsoft. All rights reserved.
#Copyright (c) Microsoft. All rights reserved.
#Licensed under the MIT license. See LICENSE file in the project root for full license information.

set(theseTestsName fabric_async_op_wrapper_ut)
Expand Down Expand Up @@ -32,4 +32,4 @@ testasyncoperation.h

include_directories($<TARGET_PROPERTY:FabricClient,INTERFACE_INCLUDE_DIRECTORIES>)

build_test_artifacts(${theseTestsName} "tests/sf_c_util" ADDITIONAL_LIBS c_util debug FabricUUIDD optimized FabricUUID com_wrapper c_pal_reals sf_c_util)
build_test_artifacts(${theseTestsName} "tests/sf_c_util" ADDITIONAL_LIBS c_pal c_util debug FabricUUIDD optimized FabricUUID com_wrapper c_pal_reals sf_c_util)
4 changes: 2 additions & 2 deletions tests/fabric_async_op_wrapper_ut/fabric_async_op_wrapper_ut.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ static void setup_success_async_execute_completed_synchronously(USER_INVOKE_CB*

BEGIN_TEST_SUITE(TEST_SUITE_NAME_FROM_CMAKE)

TEST_SUITE_INITIALIZE(suite_init)
TIMED_TEST_SUITE_INITIALIZE(suite_init, TIMED_TEST_DEFAULT_TIMEOUT_MS)
{
ASSERT_ARE_EQUAL(int, 0, real_gballoc_hl_init(NULL, NULL));

Expand All @@ -133,7 +133,7 @@ TEST_SUITE_INITIALIZE(suite_init)
REGISTER_UMOCK_ALIAS_TYPE(TEST_ASYNC_OPERATION_CONTEXT_HANDLE_DESTROY_FUNC, void*);
}

TEST_SUITE_CLEANUP(suite_cleanup)
TIMED_TEST_SUITE_CLEANUP(suite_cleanup)
{
umock_c_deinit();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ set(${theseTestsName}_h_files

include_directories($<TARGET_PROPERTY:FabricClient,INTERFACE_INCLUDE_DIRECTORIES>)

build_test_artifacts(${theseTestsName} "tests/sf_c_util" ADDITIONAL_LIBS c_util debug FabricUUIDD optimized FabricUUID c_pal_reals
build_test_artifacts(${theseTestsName} "tests/sf_c_util" ADDITIONAL_LIBS c_pal c_util debug FabricUUIDD optimized FabricUUID c_pal_reals
ENABLE_TEST_FILES_PRECOMPILED_HEADERS "${CMAKE_CURRENT_LIST_DIR}/fabric_configuration_package_change_handler_ut_pch.h")
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ static void on_umock_c_error(UMOCK_C_ERROR_CODE error_code)

BEGIN_TEST_SUITE(TEST_SUITE_NAME_FROM_CMAKE)

TEST_SUITE_INITIALIZE(suite_init)
TIMED_TEST_SUITE_INITIALIZE(suite_init, TIMED_TEST_DEFAULT_TIMEOUT_MS)
{
ASSERT_ARE_EQUAL(int, 0, real_gballoc_hl_init(NULL, NULL));

Expand All @@ -41,7 +41,7 @@ TEST_SUITE_INITIALIZE(suite_init)
REGISTER_GBALLOC_HL_GLOBAL_MOCK_HOOK();
}

TEST_SUITE_CLEANUP(suite_cleanup)
TIMED_TEST_SUITE_CLEANUP(suite_cleanup)
{
umock_c_deinit();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@

#include "c_pal/interlocked.h" /*included for mocking reasons - it will prohibit creation of mocks belonging to interlocked.h*/

#include "c_pal/timed_test_suite.h"

#include "umock_c/umock_c_ENABLE_MOCKS.h" // ============================== ENABLE_MOCKS

#include "c_pal/gballoc_hl.h"
Expand All @@ -28,4 +30,4 @@

#include "sf_c_util/fabric_configuration_package_change_handler.h"

#endif // FABRIC_CONFIGURATION_PACKAGE_CHANGE_HANDLER_UT_PCH_H
#endif // FABRIC_CONFIGURATION_PACKAGE_CHANGE_HANDLER_UT_PCH_H
4 changes: 2 additions & 2 deletions tests/fabric_op_completed_sync_ctx_ut/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Copyright (c) Microsoft. All rights reserved.
#Copyright (c) Microsoft. All rights reserved.
#Licensed under the MIT license. See LICENSE file in the project root for full license information.

set(theseTestsName fabric_op_completed_sync_ctx_ut)
Expand All @@ -20,5 +20,5 @@ test_callback_com.h

include_directories($<TARGET_PROPERTY:FabricClient,INTERFACE_INCLUDE_DIRECTORIES>)

build_test_artifacts(${theseTestsName} "tests/sf_c_util" ADDITIONAL_LIBS c_util debug FabricUUIDD optimized FabricUUID com_wrapper c_pal_reals
build_test_artifacts(${theseTestsName} "tests/sf_c_util" ADDITIONAL_LIBS c_pal c_util debug FabricUUIDD optimized FabricUUID com_wrapper c_pal_reals
ENABLE_TEST_FILES_PRECOMPILED_HEADERS "${CMAKE_CURRENT_LIST_DIR}/fabric_op_completed_sync_ctx_ut_pch.h")
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ static void on_umock_c_error(UMOCK_C_ERROR_CODE error_code)

BEGIN_TEST_SUITE(TEST_SUITE_NAME_FROM_CMAKE)

TEST_SUITE_INITIALIZE(suite_init)
TIMED_TEST_SUITE_INITIALIZE(suite_init, TIMED_TEST_DEFAULT_TIMEOUT_MS)
{
ASSERT_ARE_EQUAL(int, 0, real_gballoc_hl_init(NULL, NULL));

Expand All @@ -36,7 +36,7 @@ TEST_SUITE_INITIALIZE(suite_init)
REGISTER_UMOCK_ALIAS_TYPE(TEST_CALLBACK_HANDLE_DESTROY_FUNC, void*);
}

TEST_SUITE_CLEANUP(suite_cleanup)
TIMED_TEST_SUITE_CLEANUP(suite_cleanup)
{
umock_c_deinit();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@

#include "c_pal/interlocked.h" /*included for mocking reasons - it will prohibit creation of mocks belonging to interlocked.h - at the moment verified through int tests - this is porting legacy code, temporary solution*/

#include "c_pal/timed_test_suite.h"

#include "umock_c/umock_c_ENABLE_MOCKS.h" // ============================== ENABLE_MOCKS

#include "c_pal/gballoc_hl.h"
Expand All @@ -40,4 +42,4 @@

#include "sf_c_util/fabric_op_completed_sync_ctx.h"

#endif // FABRIC_OP_COMPLETED_SYNC_CTX_UT_PCH_H
#endif // FABRIC_OP_COMPLETED_SYNC_CTX_UT_PCH_H
4 changes: 2 additions & 2 deletions tests/fabric_string_result_ut/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Copyright (c) Microsoft. All rights reserved.
#Copyright (c) Microsoft. All rights reserved.
#Licensed under the MIT license. See LICENSE file in the project root for full license information.

set(theseTestsName fabric_string_result_ut)
Expand All @@ -17,5 +17,5 @@ set(${theseTestsName}_h_files

include_directories($<TARGET_PROPERTY:FabricClient,INTERFACE_INCLUDE_DIRECTORIES>)

build_test_artifacts(${theseTestsName} "tests/sf_c_util" ADDITIONAL_LIBS c_util debug FabricUUIDD optimized FabricUUID c_pal_reals
build_test_artifacts(${theseTestsName} "tests/sf_c_util" ADDITIONAL_LIBS c_pal c_util debug FabricUUIDD optimized FabricUUID c_pal_reals
ENABLE_TEST_FILES_PRECOMPILED_HEADERS "${CMAKE_CURRENT_LIST_DIR}/fabric_string_result_ut_pch.h")
6 changes: 3 additions & 3 deletions tests/fabric_string_result_ut/fabric_string_result_ut.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Microsoft. All rights reserved.
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

#include "fabric_string_result_ut_pch.h"
Expand All @@ -13,7 +13,7 @@ static void on_umock_c_error(UMOCK_C_ERROR_CODE error_code)

BEGIN_TEST_SUITE(TEST_SUITE_NAME_FROM_CMAKE)

TEST_SUITE_INITIALIZE(suite_init)
TIMED_TEST_SUITE_INITIALIZE(suite_init, TIMED_TEST_DEFAULT_TIMEOUT_MS)
{
ASSERT_ARE_EQUAL(int, 0, real_gballoc_hl_init(NULL, NULL));

Expand All @@ -23,7 +23,7 @@ TEST_SUITE_INITIALIZE(suite_init)
REGISTER_GLOBAL_MOCK_FAIL_RETURN(malloc, NULL);
}

TEST_SUITE_CLEANUP(suite_cleanup)
TIMED_TEST_SUITE_CLEANUP(suite_cleanup)
{
umock_c_deinit();

Expand Down
Loading
Loading