Skip to content

Commit

Permalink
Add empty unit test. Refs #5041.
Browse files Browse the repository at this point in the history
  • Loading branch information
wdzhou committed Mar 29, 2012
1 parent e58219f commit 5b099bd
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions Code/Mantid/Framework/Algorithms/test/CountEventsInPulsesTest.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#ifndef MANTID_ALGORITHMS_COUNTEVENTSINPULSESTEST_H_
#define MANTID_ALGORITHMS_COUNTEVENTSINPULSESTEST_H_

#include <cxxtest/TestSuite.h>
#include "MantidKernel/Timer.h"
#include "MantidKernel/System.h"
#include <iostream>
#include <iomanip>

#include "MantidAlgorithms/CountEventsInPulses.h"

using namespace Mantid;
using namespace Mantid::Algorithms;
using namespace Mantid::API;

class CountEventsInPulsesTest : public CxxTest::TestSuite
{
public:
// This pair of boilerplate methods prevent the suite being created statically
// This means the constructor isn't called when running other tests
static CountEventsInPulsesTest *createSuite() { return new CountEventsInPulsesTest(); }
static void destroySuite( CountEventsInPulsesTest *suite ) { delete suite; }


void test_Something()
{
}


};


#endif /* MANTID_ALGORITHMS_COUNTEVENTSINPULSESTEST_H_ */

0 comments on commit 5b099bd

Please sign in to comment.