Skip to content

Commit

Permalink
Auto-format
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinitou committed Jan 19, 2024
1 parent 082b11d commit 10ea9f3
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions tests/host.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,30 @@
#include <catch2/catch_all.hpp>

template class clap::helpers::Host<clap::helpers::MisbehaviourHandler::Terminate,
clap::helpers::CheckingLevel::Maximal>;
clap::helpers::CheckingLevel::Maximal>;
template class clap::helpers::Host<clap::helpers::MisbehaviourHandler::Terminate,
clap::helpers::CheckingLevel::Minimal>;
clap::helpers::CheckingLevel::Minimal>;
template class clap::helpers::Host<clap::helpers::MisbehaviourHandler::Terminate,
clap::helpers::CheckingLevel::None>;
clap::helpers::CheckingLevel::None>;
template class clap::helpers::Host<clap::helpers::MisbehaviourHandler::Ignore,
clap::helpers::CheckingLevel::Maximal>;
clap::helpers::CheckingLevel::Maximal>;

template class clap::helpers::PluginProxy<clap::helpers::MisbehaviourHandler::Terminate,
clap::helpers::CheckingLevel::Maximal>;
clap::helpers::CheckingLevel::Maximal>;
template class clap::helpers::PluginProxy<clap::helpers::MisbehaviourHandler::Terminate,
clap::helpers::CheckingLevel::Minimal>;
clap::helpers::CheckingLevel::Minimal>;
template class clap::helpers::PluginProxy<clap::helpers::MisbehaviourHandler::Terminate,
clap::helpers::CheckingLevel::None>;
clap::helpers::CheckingLevel::None>;
template class clap::helpers::PluginProxy<clap::helpers::MisbehaviourHandler::Ignore,
clap::helpers::CheckingLevel::Maximal>;
clap::helpers::CheckingLevel::Maximal>;

CATCH_TEST_CASE("Host - Link") {
clap::helpers::Host<clap::helpers::MisbehaviourHandler::Terminate,
clap::helpers::CheckingLevel::Maximal> *h0 = nullptr;
clap::helpers::CheckingLevel::Maximal> *h0 = nullptr;
clap::helpers::Host<clap::helpers::MisbehaviourHandler::Terminate,
clap::helpers::CheckingLevel::Minimal> *h1 = nullptr;
clap::helpers::CheckingLevel::Minimal> *h1 = nullptr;
clap::helpers::Host<clap::helpers::MisbehaviourHandler::Terminate,
clap::helpers::CheckingLevel::None> *h2 = nullptr;
clap::helpers::CheckingLevel::None> *h2 = nullptr;
clap::helpers::Host<clap::helpers::MisbehaviourHandler::Ignore,
clap::helpers::CheckingLevel::Maximal> *h3 = nullptr;
clap::helpers::CheckingLevel::Maximal> *h3 = nullptr;
}

0 comments on commit 10ea9f3

Please sign in to comment.