37 lines
1.3 KiB
C
37 lines
1.3 KiB
C
/*
|
|
* Copyright (c) 2021 Cyrille Rossant and contributors. All rights reserved.
|
|
* Licensed under the MIT license. See LICENSE file in the project root for details.
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
/*************************************************************************************************/
|
|
/* Datoviz testing adapters */
|
|
/*************************************************************************************************/
|
|
|
|
#ifndef DVZ_DATOVIZ_TESTING_HEADER
|
|
#define DVZ_DATOVIZ_TESTING_HEADER
|
|
|
|
|
|
|
|
/*************************************************************************************************/
|
|
/* Includes */
|
|
/*************************************************************************************************/
|
|
|
|
#include "testing.h"
|
|
|
|
|
|
|
|
EXTERN_C_ON
|
|
|
|
/*************************************************************************************************/
|
|
/* Functions */
|
|
/*************************************************************************************************/
|
|
|
|
void dvz_testing_install_log_adapter(TstSuite* suite);
|
|
|
|
|
|
|
|
EXTERN_C_OFF
|
|
|
|
#endif
|