FastLED 3.9.15
Loading...
Searching...
No Matches
result_formatter.h
Go to the documentation of this file.
1// src/fl/channels/detail/validation/result_formatter.h
2//
3// Result formatting utilities for validation testing
4
5#pragma once
6
7#include "fl/stl/vector.h"
8
9namespace fl {
10
11// Forward declarations
12struct DriverTestResult;
13
14namespace validation {
15
19string formatSummaryTable(const fl::vector<fl::DriverTestResult>& driver_results);
20
23void printSummaryTable(const fl::vector<fl::DriverTestResult>& driver_results);
24
25} // namespace validation
26} // namespace fl
string formatSummaryTable(const fl::vector< fl::DriverTestResult > &driver_results)
Format driver validation results as a summary table.
void printSummaryTable(const fl::vector< fl::DriverTestResult > &driver_results)
Print driver validation summary table to log.
Base definition for an LED controller.
Definition crgb.hpp:179
Driver test result tracking (moved from ValidationTest.h)
Definition validation.h:68