Skip to content

Commit

Permalink
Include javax in BUILD.bazel for EventTypeToHumanReadableNameConverte…
Browse files Browse the repository at this point in the history
…r.kt

Added test BUILD.bazel config for EventTypeToHumanReadableNameConverterTest
  • Loading branch information
XichengSpencer committed Aug 27, 2024
1 parent 6ec532f commit 802dff1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ kt_android_library(
],
deps = [
"//model/src/main/proto:event_logger_java_proto_lite",
"//third_party:javax_inject_javax_inject",
],
)

Expand Down
15 changes: 15 additions & 0 deletions utility/src/test/java/org/oppia/android/util/logging/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -112,3 +112,18 @@ oppia_android_test(
"//utility/src/main/java/org/oppia/android/util/networking:debug_module",
],
)

oppia_android_test(
name = "EventTypeToHumanReadableNameConverterTest",
srcs = ["EventTypeToHumanReadableNameConverterTest.kt"],
custom_package = "org.oppia.android.util.logging",
test_class = "org.oppia.android.util.logging.EventTypeToHumanReadableNameConverterTest",
test_manifest = "//utility:test_manifest",
deps = [
"//:dagger",
"//testing",
"//third_party:androidx_test_ext_junit",
"//third_party:com_google_truth_truth",
"//third_party:org_robolectric_robolectric",
"//third_party:robolectric_android-all",
],

0 comments on commit 802dff1

Please sign in to comment.