| 21 | using Action = PJ::IngestProgressWidget::Action; |
| 22 | |
| 23 | TEST(IngestProgressWidgetTest, StartsHiddenAndInactive) { |
| 24 | IngestProgressWidget widget; |
| 25 | EXPECT_TRUE(widget.isHidden()); |
| 26 | EXPECT_EQ(widget.lastAction(), Action::kNone); |
| 27 | } |
| 28 | |
| 29 | TEST(IngestProgressWidgetTest, SetActiveShowsAndHides) { |
| 30 | IngestProgressWidget widget; |
nothing calls this directly
no test coverage detected