Closed FWDekker closed 1 year ago
Instead of using NamedTag(...) separately in each test class, collect all possible tags centrally in, say, TestTags, and refer to those.
NamedTag(...)
TestTags
This will make it easier to know which tags are available, and to check their usages to see if anything is missing or incorrect.
And while I'm at it, replace shouldBe null with should beNull(), for consistency.
shouldBe null
should beNull()
Oh, and change shouldBe Bundle(...) to should matchBundle(...)!
shouldBe Bundle(...)
should matchBundle(...)
Instead of using
NamedTag(...)
separately in each test class, collect all possible tags centrally in, say,TestTags
, and refer to those.This will make it easier to know which tags are available, and to check their usages to see if anything is missing or incorrect.