bundle.activator property not specified in the manifest and bundle has no activator class
| 64 | |
| 65 | // bundle.activator property not specified in the manifest and bundle has no activator class |
| 66 | TEST_F(BundleActivatorTest, NoPropertyNoClass) |
| 67 | { |
| 68 | auto bundle = cppmicroservices::testing::InstallLib(ctx, "TestBundleR"); |
| 69 | EXPECT_TRUE(bundle); |
| 70 | EXPECT_NO_THROW(bundle.Start()); |
| 71 | } |
| 72 | |
| 73 | // bundle.activator property not specified in the manifest and bundle has an activator class |
| 74 | TEST_F(BundleActivatorTest, NoPropertyWithClass) |
nothing calls this directly
no test coverage detected