LUMIERA.clone/tests/core/steam/engine/node-storage-test.cpp
Ichthyostega 544075d143 Invocation: rearrange the Render Node development tests
This is an attempt to take aim at the next step,
which is to fill in the missing part for an actual node invocation...

''...still fighting to get ahead, due to complexity of involced concerns...''
2024-12-07 02:17:55 +01:00

54 lines
1.4 KiB
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
NodeStorage(Test) - verify storage setup for render nodes in the engine
Copyright (C)
2009, 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 node-storage-test.cpp
** Actual storage setup for render nodes is demonstrated by \ref NodeStorage_test.
** @todo 12/2024 this test will focus on the high-level integration,
** which is future work and possibly addressed in the next »Vertical Slice«
** when we add processing of a given media clip from disk.
*/
#include "lib/test/run.hpp"
//#include "lib/util.hpp"
using std::string;
namespace steam {
namespace engine{
namespace test {
/***************************************************************//**
* @test creating and wiring various kinds of render nodes.
*/
class NodeStorage_test : public Test
{
virtual void
run (Arg)
{
UNIMPLEMENTED ("build and wire some render nodes");
}
};
/** Register this test class... */
LAUNCHER (NodeStorage_test, "unit node");
}}} // namespace steam::engine::test