Skip to content

Commit

Permalink
First Test
Browse files Browse the repository at this point in the history
  • Loading branch information
vorburger committed Mar 16, 2023
1 parent c9aade3 commit 2d06cd9
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions core/lib/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,12 @@ java_library(
"//core/proto:core_proto_java_library",
],
)

[java_test(
name = name[:-len(".java")],
srcs = [name],
resources = glob(["src/test/resources/**/*"]),
deps = [":lib_java"],
) for name in glob([
"src/test/java/**/*Test.java",
])]
9 changes: 9 additions & 0 deletions core/lib/src/test/java/dev/enola/core/URIsTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package dev.enola.core;

import org.junit.Test;

public class URIsTest {
@Test
public void testURI() {
}
}

0 comments on commit 2d06cd9

Please sign in to comment.