diff --git a/tests/create-an-actual-host.cc b/tests/create-an-actual-host.cc index c11196e..973d2fc 100644 --- a/tests/create-an-actual-host.cc +++ b/tests/create-an-actual-host.cc @@ -4,6 +4,8 @@ #include "clap/helpers/host.hh" #include "clap/helpers/host.hxx" +#include "clap/helpers/plugin-proxy.hh" +#include "clap/helpers/plugin-proxy.hxx" #include @@ -34,3 +36,14 @@ CATCH_TEST_CASE("Create an Actual Host") CATCH_REQUIRE(std::is_constructible::value); } } + +using test_plugin_proxy = clap::helpers::PluginProxy; + +CATCH_TEST_CASE("Create an Actual Plugin Proxy") +{ + CATCH_SECTION("Test Plugin Proxy is Creatable") + { + CATCH_REQUIRE(std::is_constructible::value); + } +}