mirror of
https://github.com/dalathegreat/Battery-Emulator.git
synced 2025-10-04 10:19:29 +02:00
Tidy up parameterised test names
This commit is contained in:
parent
5bb12915fe
commit
5555b38fea
4 changed files with 36 additions and 10 deletions
12
test/utils/utils.h
Normal file
12
test/utils/utils.h
Normal file
|
@ -0,0 +1,12 @@
|
|||
#include "../../Software/src/devboard/utils/types.h"
|
||||
|
||||
#include <filesystem>
|
||||
#include <iostream>
|
||||
|
||||
namespace fs = std::filesystem;
|
||||
|
||||
bool ends_with(const std::string& str, const std::string& suffix);
|
||||
std::vector<std::string> split(const std::string& text, char sep);
|
||||
std::string snake_case_to_camel_case(const std::string& str);
|
||||
|
||||
std::vector<CAN_frame> parse_can_log_file(const fs::path& filePath);
|
Loading…
Add table
Add a link
Reference in a new issue