Blob Blame Raw
#ifndef LAYER_ALL_TEST_INC_CPP
#define LAYER_ALL_TEST_INC_CPP



#include "layer.simple.test.inc.cpp"
#include "layer.conv.test.inc.cpp"


class AllTest: public Test {
public:
  static bool test(const char *name = "all") {
    Stage st(name);
    SimpleTest::test();
    ConvTest::test();
    return st;
  }
};


#endif