mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-07 22:44:25 +08:00
* some initial work... Still some real questions here about what should be done with dp_mol data members * add some tests for move semantics of Dict and Props remove extraneous clear() * more in-depth testing of the molecule results * test refactoring * improve the molecule move test * fix some leaks found by valgrind the new tests are now all clean in valgrind * additional classes QueryAtom, QueryBond, RingInfo, Conformer * get swig working again. Not sure why this is necessary, but SWIG is a mysterious beast * fixes in response to review * updates in response to review
20 lines
470 B
C++
20 lines
470 B
C++
//
|
|
// Copyright (C) 2021 Greg Landrum
|
|
// @@ All Rights Reserved @@
|
|
// This file is part of the RDKit.
|
|
// The contents are covered by the terms of the BSD license
|
|
// which is included in the file license.txt, found at the root
|
|
// of the RDKit source tree.
|
|
//
|
|
|
|
#define CATCH_CONFIG_RUNNER
|
|
#include "catch.hpp"
|
|
#include <RDGeneral/RDLog.h>
|
|
|
|
int main(int argc, char* argv[]) {
|
|
RDLog::InitLogs();
|
|
|
|
int result = Catch::Session().run(argc, argv);
|
|
|
|
return result;
|
|
} |