You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
600 B
C++
32 lines
600 B
C++
#include "Test.h"
|
|
#include "Pattern.h"
|
|
#include "Pooling.h"
|
|
class NNTests : public Client::Group
|
|
{
|
|
public:
|
|
NNTests(Testing::testID_t id):Client::Group(id)
|
|
,PoolingVar(2)
|
|
|
|
{
|
|
this->addContainer(NULL);this->addContainer(&PoolingVar);
|
|
|
|
}
|
|
private:
|
|
Pooling PoolingVar;
|
|
;
|
|
};
|
|
class Root : public Client::Group
|
|
{
|
|
public:
|
|
Root(Testing::testID_t id):Client::Group(id)
|
|
,NNTestsVar(3)
|
|
|
|
{
|
|
this->addContainer(NULL);this->addContainer(NULL);this->addContainer(&NNTestsVar);
|
|
this->addContainer(NULL);
|
|
}
|
|
private:
|
|
NNTests NNTestsVar;
|
|
;
|
|
};
|