/**
*   TEmplate for tests
*/

// see test_crisp_subtract.cpp

#include "gtest/gtest.h"

#include "../primitives.hpp"
#include "../basic_data_structures.hpp"
#include "../basic_functions.hpp"
#include "../crisp_subtract.hpp"
#include "../unit_sphere.hpp"

// #include "../../js_iteration_1/timer.hpp"

TEST(CrispSubtractTests, TwoSpheresOneInsideOther) {

    EXPECT_LT( 1, 2 );
    EXPECT_GT( 2, 1 );
}

/*
TEST(CrispSubtractTests, TwoSpheresOverlapping){
    ...
}
*/

/*
int main(int argc, char **argv) {
    ::testing::InitGoogleTest(&argc, argv);
    return RUN_ALL_TESTS();
}
*/


/*
#include "gtest/gtest.h"
TEST(VectorizsedAlgorithmsTests, make_random_pm1__mean) {

    EXPECT_LT( 1, 2 );
    EXPECT_GT( 2, 1 );
}
int main(int argc, char **argv) {
    ::testing::InitGoogleTest(&argc, argv);
    return RUN_ALL_TESTS();
}
*/

