You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
302 B

  1. #include "test/storm_gtest.h"
  2. #include "storm-dft/settings/DftSettings.h"
  3. int main(int argc, char **argv) {
  4. storm::settings::initializeDftSettings("Storm-dft (Functional) Testing Suite", "test-dft");
  5. storm::test::initialize();
  6. ::testing::InitGoogleTest(&argc, argv);
  7. return RUN_ALL_TESTS();
  8. }