52 lines
1.2 KiB
C++
52 lines
1.2 KiB
C++
/*
|
||
BuildSegment(Test) - building the render-tree for a segment of the Timeline
|
||
|
||
Copyright (C)
|
||
2008, Hermann Vosseler <Ichthyostega@web.de>
|
||
|
||
**Lumiera** is free software; you can redistribute it and/or modify it
|
||
under the terms of the GNU General Public License as published by the
|
||
Free Software Foundation; either version 2 of the License, or (at your
|
||
option) any later version. See the file COPYING for further details.
|
||
|
||
* *****************************************************************/
|
||
|
||
/** @file build-segment-test.cpp
|
||
** unit test \ref BuildSegment_test
|
||
*/
|
||
|
||
|
||
#include "lib/test/run.hpp"
|
||
//#include "lib/util.hpp"
|
||
|
||
|
||
//using std::string;
|
||
|
||
|
||
namespace steam {
|
||
namespace mobject {
|
||
namespace builder {
|
||
namespace test {
|
||
|
||
|
||
|
||
|
||
/***************************************************************//**
|
||
* @test the builder core functionality: create a render pipeline
|
||
* for a given segment of the Session/Timeline.
|
||
*/
|
||
class BuildSegment_test : public Test
|
||
{
|
||
virtual void run(Arg)
|
||
{
|
||
UNIMPLEMENTED ("oh my");
|
||
}
|
||
};
|
||
|
||
|
||
/** Register this test class... */
|
||
LAUNCHER (BuildSegment_test, "function builder");
|
||
|
||
|
||
|
||
}}}} // namespace steam::mobject::builder::test
|