Test library for MTS Socket Modem Arduino Shield devices for Multi-Tech Systems

Dependents:   mtsas mtsas mtsas mtsas ... more

TestCollection.h

Committer:
Vanger
Date:
2015-03-11
Revision:
12:8855e127ccd5
Parent:
11:0930606c0186
Child:
13:cc03c4e85c69

File content as of revision 12:8855e127ccd5:

#ifndef TESTCOLLECTION_H
#define TESTCOLLECTION_H

#include <string>

namespace mts
{
class TestCollection
{
public:
    TestCollection(std::string testName);
    ~TestCollection();
    std::string getName();
    virtual void run() = 0;
private:
    std::string testName;
};

}

#endif