41 lines
561 B
Python
41 lines
561 B
Python
|
|
cc_library(
|
|
name = "test_deps",
|
|
srcs = [
|
|
"test_main.cpp",
|
|
"rng.h"
|
|
],
|
|
deps = [
|
|
"//source:msgpack",
|
|
"@expected",
|
|
"@ut",
|
|
"@fmt",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "reader",
|
|
srcs = [
|
|
"test_reader_relaxed.cpp",
|
|
"test_reader_strict.cpp",
|
|
],
|
|
deps = ["test_deps"],
|
|
)
|
|
|
|
cc_test(
|
|
name = "writer",
|
|
srcs = [
|
|
"test_writer.cpp",
|
|
],
|
|
deps = ["test_deps"],
|
|
)
|
|
|
|
cc_test(
|
|
name = "object",
|
|
srcs = [
|
|
"test_object.cpp",
|
|
],
|
|
deps = ["test_deps"],
|
|
)
|
|
|