diff --git a/tests/create-an-actual-host.cc b/tests/create-an-actual-host.cc index c11196e..bad36b2 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 @@ -27,10 +29,17 @@ struct test_host : clap::helpers::Host; + CATCH_TEST_CASE("Create an Actual Host") { CATCH_SECTION("Test Host is Creatable") { CATCH_REQUIRE(std::is_constructible::value); } + CATCH_SECTION("Test Plugin Proxy is Creatable") + { + CATCH_REQUIRE(std::is_constructible::value); + } }