mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 16:24:57 +01:00
Fix insane formatting/whitespace in evoral test stuff. C'mon Hans ;)
git-svn-id: svn://localhost/ardour2/branches/3.0@5799 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
cb8407d26f
commit
a2c434d5cd
5 changed files with 92 additions and 93 deletions
|
|
@ -54,7 +54,7 @@ class SMFTest : public CppUnit::TestFixture
|
|||
CPPUNIT_TEST(takeFiveTest);
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
|
||||
public:
|
||||
public:
|
||||
typedef double Time;
|
||||
|
||||
void setUp() {
|
||||
|
|
@ -72,7 +72,7 @@ class SMFTest : public CppUnit::TestFixture
|
|||
void createNewFileTest();
|
||||
void takeFiveTest();
|
||||
|
||||
private:
|
||||
private:
|
||||
DummyTypeMap* type_map;
|
||||
MySequence<Time>* seq;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -99,8 +99,7 @@ class SequenceTest : public CppUnit::TestFixture
|
|||
CPPUNIT_TEST (preserveEventOrderingTest);
|
||||
CPPUNIT_TEST_SUITE_END ();
|
||||
|
||||
public:
|
||||
|
||||
public:
|
||||
typedef double Time;
|
||||
typedef std::vector<boost::shared_ptr<Note<Time> > > Notes;
|
||||
|
||||
|
|
@ -110,7 +109,7 @@ class SequenceTest : public CppUnit::TestFixture
|
|||
seq = new MySequence<Time>(*type_map);
|
||||
assert(seq);
|
||||
|
||||
for(int i = 0; i < 12; i++) {
|
||||
for (int i = 0; i < 12; i++) {
|
||||
test_notes.push_back(boost::shared_ptr<Note<Time> >
|
||||
(new Note<Time>(0, i * 100, 100, 64 + i, 64)));
|
||||
}
|
||||
|
|
@ -125,7 +124,7 @@ class SequenceTest : public CppUnit::TestFixture
|
|||
void createTest (void);
|
||||
void preserveEventOrderingTest (void);
|
||||
|
||||
private:
|
||||
private:
|
||||
DummyTypeMap* type_map;
|
||||
MySequence<Time>* seq;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue