You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.5 KiB
79 lines
1.5 KiB
/**
|
|
* \file
|
|
* loggerTest.c: tests for my logger class
|
|
* Copyright (C) 2012 Georg Hopp
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "runtest.h"
|
|
#include "cclass.h"
|
|
#include "logger.h"
|
|
|
|
|
|
static void
|
|
logfnct_mock(int level, const char * msg)
|
|
{
|
|
printf("DEBUG: %d / %s\n", level, msg);
|
|
}
|
|
|
|
LOGGER logger = NULL;
|
|
int level = -1;
|
|
char * msg = NULL;
|
|
|
|
|
|
static
|
|
int
|
|
__setUp()
|
|
{
|
|
logger = new(LOGGER);
|
|
|
|
ASSERT_INSTANCE_OF(LOGGER, logger);
|
|
|
|
logger_add(LOGGER, logfnct_mock);
|
|
|
|
return TEST_OK;
|
|
}
|
|
int (* const setUp)() = __setUp;
|
|
|
|
static
|
|
int
|
|
__tearDown()
|
|
{
|
|
if (NULL != logger) {
|
|
ASSERT_OBJECT(logger);
|
|
delete(&logger);
|
|
}
|
|
|
|
return TEST_OK;
|
|
}
|
|
int (* const tearDown)() = __tearDown;
|
|
|
|
static
|
|
int
|
|
testDummy()
|
|
{
|
|
logger_log(LOGGER_DEBUG, "moo foo bar");
|
|
|
|
return TEST_OK;
|
|
}
|
|
|
|
const testfunc tests[] = {
|
|
testDummy
|
|
};
|
|
const size_t count = FUNCS_COUNT(tests);
|
|
|
|
// vim: set et ts=4 sw=4:
|