2022-04-10 08:22:58 +00:00
|
|
|
// Copyright 2022 Dietrich Epp.
|
|
|
|
// This file is part of SyncFiles. SyncFiles is licensed under the terms of the
|
|
|
|
// Mozilla Public License, version 2.0. See LICENSE.txt for details.
|
|
|
|
#ifndef LIB_TEST_H
|
|
|
|
#define LIB_TEST_H
|
2022-03-23 05:26:25 +00:00
|
|
|
/* test.h - unit testing definitions. */
|
|
|
|
|
2022-03-25 05:45:55 +00:00
|
|
|
#include "lib/defs.h"
|
2022-03-23 05:26:25 +00:00
|
|
|
|
2022-03-30 07:46:19 +00:00
|
|
|
/* The number of test failures. */
|
|
|
|
extern int gFailCount;
|
2022-03-23 05:26:25 +00:00
|
|
|
|
2022-03-30 07:46:19 +00:00
|
|
|
/* Set the name of the current test. */
|
|
|
|
void SetTestName(const char *name);
|
|
|
|
|
|
|
|
/* Set the name of the current test. */
|
|
|
|
void SetTestNamef(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
|
|
|
|
|
|
|
|
/* Fail the current test. */
|
|
|
|
void Failf(const char *msg, ...) __attribute__((format(printf, 1, 2)));
|
|
|
|
|
|
|
|
/* Return the description of an error code. Fatal error if the error code is
|
|
|
|
invalid. */
|
|
|
|
const char *ErrorDescriptionOrDie(ErrorCode err);
|
|
|
|
|
|
|
|
/* Print information about completed tests and return the status code. */
|
2022-04-10 07:51:59 +00:00
|
|
|
int TestsDone(void);
|
2022-03-23 05:26:25 +00:00
|
|
|
|
|
|
|
#endif
|