File | Line | Function |
---|---|---|
/global.php | 94 | errorHandler->error |
/printthread.php | 16 | require_once |
File | Line | Function |
---|---|---|
/global.php | 550 | errorHandler->error |
/printthread.php | 16 | require_once |
File | Line | Function |
---|---|---|
/global.php | 811 | errorHandler->error |
/printthread.php | 16 | require_once |
File | Line | Function |
---|---|---|
/global.php | 811 | errorHandler->error |
/printthread.php | 16 | require_once |
File | Line | Function |
---|---|---|
/global.php(872) : eval()'d code | 26 | errorHandler->error |
/global.php | 872 | eval |
/printthread.php | 16 | require_once |
File | Line | Function |
---|---|---|
/printthread.php | 160 | errorHandler->error |
File | Line | Function |
---|---|---|
/printthread.php | 165 | errorHandler->error |
File | Line | Function |
---|---|---|
/printthread.php | 160 | errorHandler->error |
File | Line | Function |
---|---|---|
/printthread.php | 165 | errorHandler->error |
File | Line | Function |
---|---|---|
/printthread.php | 160 | errorHandler->error |
File | Line | Function |
---|---|---|
/printthread.php | 165 | errorHandler->error |
The following warnings occurred: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "lockoutexpiry" - Line: 94 - File: global.php PHP 8.1.30 (FreeBSD)
|
Unit-Testing - Printable Version +- Official Murl Engine Forum (https://murlengine.com/forum) +-- Forum: Murl Engine (https://murlengine.com/forum/forumdisplay.php?fid=5) +--- Forum: General (https://murlengine.com/forum/forumdisplay.php?fid=8) +--- Thread: Unit-Testing (/showthread.php?tid=12) |
Unit-Testing - JosefHeld - 01 May 2013 Hi, can you suggest a framework for Unit-Testing when working with MURL? Josef RE: Unit-Testing - dizzy - 02 May 2013 From my experience, I think CPPUnit is certainly worth a look: http://sourceforge.net/projects/cppunit/ However, we do not directly offer any unit testing hooks in the engine. It is purely up to the application developer to create unit tests on the user code side, which on the other hand allows to freely choose the testing framework. RE: Unit-Testing - JosefHeld - 02 May 2013 (02 May 2013, 8:04)dizzy Wrote: From my experience, I think CPPUnit is certainly worth a look:Thank you, dizzy! That's what I wanted to hear (02 May 2013, 8:04)dizzy Wrote: However, we do not directly offer any unit testing hooks in the engine. It is purely up to the application developer to create unit tests on the user code side, which on the other hand allows to freely choose the testing framework.I'd only like to test my classes/methods anyway - nothing else |