paulxstretch/deps/clap-juce-extensions/clap-libs/clap-helpers/tests/plugin.cc

18 lines
869 B
C++
Raw Normal View History

#include <clap/helpers/param-queue.hh>
#include <clap/helpers/plugin.hh>
#include <clap/helpers/plugin.hxx>
#include <clap/helpers/reducing-param-queue.hh>
#include <clap/helpers/reducing-param-queue.hxx>
#include <catch2/catch.hpp>
CATCH_TEST_CASE("Plugin - Link") {
clap::helpers::Plugin<clap::helpers::MisbehaviourHandler::Terminate,
clap::helpers::CheckingLevel::Maximal> *p0 = nullptr;
clap::helpers::Plugin<clap::helpers::MisbehaviourHandler::Terminate,
clap::helpers::CheckingLevel::Minimal> *p1 = nullptr;
clap::helpers::Plugin<clap::helpers::MisbehaviourHandler::Terminate,
clap::helpers::CheckingLevel::None> *p2 = nullptr;
clap::helpers::Plugin<clap::helpers::MisbehaviourHandler::Ignore,
clap::helpers::CheckingLevel::Maximal> *p3 = nullptr;
}