1
0
mirror of https://github.com/deavmi/dlog.git synced 2024-07-27 10:10:16 +02:00

Removed testing module

This commit is contained in:
Tristan B. Velloza Kildaire 2021-12-23 15:14:41 +02:00
parent e22c677026
commit 24bc5bec34

View File

@ -1,16 +0,0 @@
module dlog.testing.thing;
import dlog;
/**
* Tests the DefaultLogger
*/
unittest
{
Logger logger = new DefaultLogger();
logger.log("This is a log message");
logger.log(1);
logger.log(true);
logger.log([1,2,3]);
}