16 lines
325 B
C++
16 lines
325 B
C++
#include "MidiReader.h"
|
|
|
|
#include "TestFramework.h"
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <iostream>
|
|
|
|
TEST_CASE(TestReadMidi, "audio")
|
|
{
|
|
MidiReader reader;
|
|
reader.Read("/home/jmsgrogan/Downloads/test.mid");
|
|
|
|
auto document = reader.GetDocument();
|
|
// std::cout << document->Serialize() << std::endl;
|
|
};
|