22 lines
432 B
C++
22 lines
432 B
C++
#pragma once
|
|
|
|
/**
|
|
* @brief Test suite for the format_byte_size output
|
|
*/
|
|
void format_byte_size_test(void) noexcept;
|
|
|
|
/**
|
|
* @brief Test suite for the format_time output
|
|
*/
|
|
void format_time_test(void) noexcept;
|
|
|
|
/**
|
|
* @brief Test suite for the format_time_ns output
|
|
*/
|
|
void format_time_ns_test(void) noexcept;
|
|
|
|
/**
|
|
* @brief Test suite for the thousand_sep output
|
|
*/
|
|
void thousand_sep_test(void) noexcept;
|