raytracer-c/test/module_utilities/test_simple_logger.c
2020-08-19 00:20:18 -04:00

28 lines
441 B
C

//
// Created by zrowitsch on 1/11/20.
//
#include <unity.h>
#include "logger.h"
void setUp(void) {
}
void tearDown(void) {
}
void test_dummytest() {
LOGGER_log(LOGGER_ERROR, "This is an error (%s)\n", "asdf");
LOGGER_log(LOGGER_WARN, "This is a warn (%s)\n", "asdf");
LOGGER_log(LOGGER_INFO, "This is an info (%s)\n", "asdf");
}
int main(void)
{
UNITY_BEGIN();
RUN_TEST(test_dummytest);
return UNITY_END();
}