summaryrefslogtreecommitdiff
path: root/willow/unittest/willow_unittest.bzl
blob: f1bb1028ba70d7463bd91d755181cca07bfe2ffb (plain)
1
2
3
4
5
6
7
8
def willow_unittest(name, srcs, deps = [], tags = [], **kwargs):
  native.cc_test(
    name = name,
    srcs = srcs,
    deps = deps + ["@catch2//:catch2_main"],
    tags = tags,
    **kwargs
  )