mirror of
https://github.com/esphome/esphome.git
synced 2026-03-25 07:33:06 +08:00
35 lines
973 B
C++
35 lines
973 B
C++
#include <gtest/gtest.h>
|
|
|
|
#include "esphome/components/logger/logger.h"
|
|
|
|
/*
|
|
This special main.cpp replaces the default one.
|
|
It will run all the Google Tests found in all compiled cpp files and then exit with the result
|
|
See README.md for more information
|
|
*/
|
|
|
|
// Auto generated code by esphome
|
|
// ========== AUTO GENERATED INCLUDE BLOCK BEGIN ===========
|
|
// ========== AUTO GENERATED INCLUDE BLOCK END ==========="
|
|
|
|
void original_setup() {
|
|
// This function won't be run.
|
|
|
|
// ========== AUTO GENERATED CODE BEGIN ===========
|
|
// =========== AUTO GENERATED CODE END ============
|
|
}
|
|
|
|
void setup() {
|
|
// Log functions call global_logger->log_vprintf_() without a null check,
|
|
// so we must set up a Logger before any test that triggers logging.
|
|
static esphome::logger::Logger test_logger(0);
|
|
test_logger.set_log_level(ESPHOME_LOG_LEVEL);
|
|
test_logger.pre_setup();
|
|
|
|
::testing::InitGoogleTest();
|
|
int exit_code = RUN_ALL_TESTS();
|
|
exit(exit_code);
|
|
}
|
|
|
|
void loop() {}
|