Skip to content

Commit

Permalink
Merge branch 'image-build_test_release' of https://github.com/NWChemE…
Browse files Browse the repository at this point in the history
…x-Project/PluginPlay into image-build_test_release
  • Loading branch information
yzhang-23 committed Aug 28, 2023
2 parents 249081e + 766fb0b commit 778cc2e
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions tests/cxx/integration_tests/blank_test.cpp
Original file line number Diff line number Diff line change
@@ -1,13 +1,27 @@
/*
* Copyright 2023 NWChemEx-Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

#define CATCH_CONFIG_MAIN
#include <iostream>
#include <catch2/catch.hpp>
#include <iostream>

int print_and_return(int ii) {
std::cout<<"This is only a blank model for an integration test."<<std::endl;
std::cout << "This is only a blank model for an integration test."
<< std::endl;
return 0;
}

TEST_CASE("Blank test", "[classic]")
{
REQUIRE(print_and_return(0) == 0);
}
TEST_CASE("Blank test", "[classic]") { REQUIRE(print_and_return(0) == 0); }

0 comments on commit 778cc2e

Please sign in to comment.