From e2a80d17584627e7c80b68cf6914f2ff10734011 Mon Sep 17 00:00:00 2001 From: trinitou Date: Fri, 9 Feb 2024 09:27:51 +0100 Subject: [PATCH] Add instanciation test for PluginProxy --- tests/create-an-actual-host.cc | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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); + } +}