AnalogTapeModel

Physical modelling signal processing for analog tape recording
Log | Files | Refs | Submodules | README | LICENSE

UnitTests.h (348B)


      1 #include <JuceHeader.h>
      2 
      3 class UnitTests : public ConsoleApplication::Command
      4 {
      5 public:
      6     UnitTests();
      7 
      8     void runUnitTests (const ArgumentList& args);
      9 
     10 private:
     11     int64 getRandomSeed (const ArgumentList& args);
     12     Array<UnitTest*> getTestsForArgs (const ArgumentList& args);
     13 
     14     JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (UnitTests)
     15 };