From 93848355594b5c8c90caa8d1c396fc0c69f2190f Mon Sep 17 00:00:00 2001 From: Ichthyostega Date: Sat, 15 Aug 2015 22:13:59 +0200 Subject: [PATCH] verify and improve another test ...also spotted by new compiler warnings --- tests/core/proc/mobject/mobject-interface-test.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/core/proc/mobject/mobject-interface-test.cpp b/tests/core/proc/mobject/mobject-interface-test.cpp index 4890f8648..3f6e47755 100644 --- a/tests/core/proc/mobject/mobject-interface-test.cpp +++ b/tests/core/proc/mobject/mobject-interface-test.cpp @@ -111,6 +111,9 @@ namespace test { Duration lenC1 = testClip1->getLength(); Duration lenC2 = testClip2->getLength(); Duration lenL1 = testLabel1->getLength(); + CHECK (lenC1 > Time::ZERO); + CHECK (lenC2 > Time::ZERO); + CHECK (lenL1 ==Time::ZERO); cout << testClip1->shortID() << endl; cout << testClip2->shortID() << endl;