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

Dependents:   mtsas mtsas mtsas mtsas ... more

TestCollection.h

Committer:
Mike Fiore
Date:
2015-06-25
Revision:
13:cc03c4e85c69
Parent:
12:8855e127ccd5

File content as of revision 13:cc03c4e85c69:

#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