Commit 69530498 authored by acpaquette's avatar acpaquette Committed by amystamile-usgs
Browse files

Enforce that core unit tests use the test preferences

parent 05b0d065
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
#include <gtest/gtest.h>

#include "Preference.h"

using namespace Isis;

int main(int argc, char **argv) {
   Isis::Preference::Preferences(true);

   ::testing::InitGoogleTest(&argc, argv);
   return RUN_ALL_TESTS();
}