git subrepo clone (merge) https://github.com/free-audio/clap-helpers.git deps/clap-juce-extensions/clap-libs/clap-helpers
subrepo: subdir: "deps/clap-juce-extensions/clap-libs/clap-helpers" merged: "2bb43c187" upstream: origin: "https://github.com/free-audio/clap-helpers.git" branch: "main" commit: "2bb43c187" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596"
This commit is contained in:
2
deps/clap-juce-extensions/clap-libs/clap-helpers/tests/main.cc
vendored
Normal file
2
deps/clap-juce-extensions/clap-libs/clap-helpers/tests/main.cc
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
#define CATCH_CONFIG_MAIN
|
||||
#include <catch2/catch.hpp>
|
18
deps/clap-juce-extensions/clap-libs/clap-helpers/tests/plugin.cc
vendored
Normal file
18
deps/clap-juce-extensions/clap-libs/clap-helpers/tests/plugin.cc
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
#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;
|
||||
}
|
Reference in New Issue
Block a user