mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-16 20:52:57 +08:00
16 lines
229 B
C
16 lines
229 B
C
/*
|
|
* testsuites.c
|
|
*
|
|
* Created on: Jun 19, 2013
|
|
* Author: petera
|
|
*/
|
|
|
|
#include "testrunner.h"
|
|
|
|
void add_suites() {
|
|
//ADD_SUITE(dev_tests);
|
|
ADD_SUITE(check_tests);
|
|
ADD_SUITE(hydrogen_tests)
|
|
ADD_SUITE(bug_tests)
|
|
}
|