summaryrefslogtreecommitdiff
path: root/libs/ardour/test/tempo_test.h
diff options
context:
space:
mode:
authornick_m <mainsbridge@gmail.com>2016-11-06 05:14:20 +1100
committernick_m <mainsbridge@gmail.com>2016-11-11 03:37:08 +1100
commit33e95a15778e7fe87c204b0c4f2db039f857b523 (patch)
tree90678ea8fdf2a8a9532d808fd2efbf5775e5290e /libs/ardour/test/tempo_test.h
parente52f90357e79dac10da2bee0e27d51e8b07d5b83 (diff)
rename Tempo _beats_per_minute to _note_types_per_minute, provide pulse helpers.
- adds quarter_notes_per_minute(), note_divisions_per_minute (double) pulses_per_minute() and frames_per_quarter_note() - this should be a no-op except for the use of tempo by the vst callback which definitely uses quarter notes per minute. - the XML node for TempoSection named 'beats-per-minute' has been renamed.
Diffstat (limited to 'libs/ardour/test/tempo_test.h')
-rw-r--r--libs/ardour/test/tempo_test.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/ardour/test/tempo_test.h b/libs/ardour/test/tempo_test.h
index a0d85d9619..2705b3ee32 100644
--- a/libs/ardour/test/tempo_test.h
+++ b/libs/ardour/test/tempo_test.h
@@ -12,6 +12,7 @@ class TempoTest : public CppUnit::TestFixture
CPPUNIT_TEST (rampTest48);
CPPUNIT_TEST (rampTest44);
CPPUNIT_TEST (tempoAtPulseTest);
+ CPPUNIT_TEST (tempoFundamentalsTest);
CPPUNIT_TEST_SUITE_END ();
public:
@@ -26,5 +27,6 @@ public:
void rampTest48 ();
void rampTest44 ();
void tempoAtPulseTest();
+ void tempoFundamentalsTest();
};