| 60 | }; |
| 61 | |
| 62 | TEST(NormalizeOpTest, RegularInput) { |
| 63 | NormalizeOpModel m("I'm good; you're welcome"); |
| 64 | m.Invoke(); |
| 65 | EXPECT_THAT(m.GetStringOutput(), |
| 66 | ElementsAreArray({"<S> i am good; you are welcome <E>"})); |
| 67 | } |
| 68 | |
| 69 | TEST(NormalizeOpTest, OneInput) { |
| 70 | NormalizeOpModel m("Hi!!!!"); |
nothing calls this directly
no test coverage detected