// Copyright The OpenTelemetry Authors // SPDX-License-Identifier: Apache-2.0 #include "opentelemetry/plugin/dynamic_load.h" #include TEST(LoadFactoryTest, FailureTest) { std::string error_message; auto factory = opentelemetry::plugin::LoadFactory("no-such-plugin", error_message); EXPECT_EQ(factory, nullptr); EXPECT_FALSE(error_message.empty()); }