diff --git a/tests/PluginBasics.cpp b/tests/PluginBasics.cpp deleted file mode 100644 index c518339..0000000 --- a/tests/PluginBasics.cpp +++ /dev/null @@ -1,26 +0,0 @@ -#include -#include -#include - -TEST_CASE("one is equal to one", "[dummy]") -{ - REQUIRE(1 == 1); -} - -// https://github.com/McMartin/FRUT/issues/490#issuecomment-663544272 -PluginProcessor testPlugin; - -TEST_CASE("Plugin instance name", "[name]") -{ - CHECK_THAT(testPlugin.getName().toStdString(), - Catch::Matchers::Equals("Pamplejuce Demo")); -} - -#ifdef PAMPLEJUCE_IPP -#include - -TEST_CASE("IPP version", "[ipp]") -{ - CHECK_THAT(ippsGetLibVersion()->Version, Catch::Matchers::Equals("2021.7 (r0xa954907f)")); -} -#endif