Removed testing module

This commit is contained in:
Tristan B. Velloza Kildaire 2021-12-23 15:14:41 +02:00
parent e22c677026
commit 24bc5bec34
1 changed files with 0 additions and 16 deletions

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]);
}