Filter:   InfoImg
download testCsv.cpp
Language: C++
LOC: 28
Project Info
Clusutils - Data Clustering Utilities(clusutils)
Server: SourceForge
Type: cvs
...lusutils\clusutils\src\csv\
   .cvsignore
   Csv.cpp
   Csv.h
   Makefile.am
   testCsv.cpp

#ifdef _MSC_VER
// Disable stupid MSVC warning about identifiers > 255 chars long
#pragma warning (disable: 4786)
#endif

#include "testsuite/test.h"
#include <iostream>
#include <string>
#include <strstream>

#include "Csv.h"


class CsvTest : public Test
{

public:
    CsvTest() {}

    void run()
        {
            testConstructors();
        }


    void testConstructors()
        {

        }        

};

int main()
{
    CsvTest t;
    t.setStream(&std::cout);
    t.run();
    t.report();

    return 0;
}