| load("//common:crubit_wrapper_macros_oss.bzl", "crubit_rust_test") |
| load("//rs_bindings_from_cc/test:test_bindings.bzl", "crubit_test_cc_library") |
| |
| package(default_applicable_licenses = ["//:license"]) |
| |
| crubit_test_cc_library( |
| name = "test_helpers", |
| testonly = 1, |
| hdrs = ["test_helpers.h"], |
| deps = [ |
| "//support/cc_std:cpp_std_string", |
| ], |
| ) |
| |
| crubit_rust_test( |
| name = "test", |
| srcs = ["test.rs"], |
| cc_deps = [ |
| ":test_helpers", |
| "//support/cc_std:cpp_std_string", |
| ], |
| deps = [ |
| "@crate_index//:googletest", |
| "@crate_index//:rstest", |
| ], |
| ) |