Page MenuHomec4science

tamaas_gtest_main.cc
No OneTemporary

File Metadata

Created
Tue, Jun 4, 07:03

tamaas_gtest_main.cc

/**
*
* @author Lucas Frérot <lucas.frerot@epfl.ch>
*
* @section LICENSE
*
* Copyright (©) 2017 EPFL (Ecole Polytechnique Fédérale de
* Lausanne) Laboratory (LSMS - Laboratoire de Simulation en Mécanique des
* Solides)
*
* Tamaas is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* Tamaas is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Tamaas. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#include "test.hh"
#ifdef USE_PYTHON
#include <pybind11/pybind11.h>
#include <pybind11/embed.h>
#include <pybind11/numpy.h>
#endif
/* -------------------------------------------------------------------------- */
class TamaasEnvironment : public ::testing::Environment {
public:
void SetUp() override {
tamaas::initialize();
}
void TearDown() override {
tamaas::finalize();
}
};
/* -------------------------------------------------------------------------- */
int main(int argc, char ** argv) {
#ifdef USE_PYTHON
std::cerr << "Initializing python interpreter" << std::endl;
pybind11::scoped_interpreter guard{};
#endif
::testing::InitGoogleTest(&argc, argv);
::testing::AddGlobalTestEnvironment(new TamaasEnvironment());
return RUN_ALL_TESTS();
}

Event Timeline