feat: add tabulate but no test.
This commit is contained in:
@ -3,9 +3,10 @@ add_executable(YYCCTestbench "")
|
||||
# Setup testbench sources
|
||||
target_sources(YYCCTestbench
|
||||
PRIVATE
|
||||
main.cpp
|
||||
|
||||
shared/literals.cpp
|
||||
|
||||
main.cpp
|
||||
yycc/macro/version_cmp.cpp
|
||||
yycc/macro/os_detector.cpp
|
||||
yycc/macro/compiler_detector.cpp
|
||||
@ -35,6 +36,7 @@ PRIVATE
|
||||
yycc/carton/pycodec.cpp
|
||||
yycc/carton/termcolor.cpp
|
||||
yycc/carton/wcwidth.cpp
|
||||
yycc/carton/tabulate.cpp
|
||||
)
|
||||
target_sources(YYCCTestbench
|
||||
PRIVATE
|
||||
|
13
testbench/yycc/carton/tabulate.cpp
Normal file
13
testbench/yycc/carton/tabulate.cpp
Normal file
@ -0,0 +1,13 @@
|
||||
#include <gtest/gtest.h>
|
||||
#include <yycc.hpp>
|
||||
#include <yycc/carton/tabulate.hpp>
|
||||
|
||||
#define TABULATE ::yycc::carton::tabulate
|
||||
|
||||
namespace yycctest::carton::tabulate {
|
||||
|
||||
TEST(CartonTabulate, Main) {
|
||||
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user