Lumiera 0.pre.04
»edit your freedom«
Loading...
Searching...
No Matches
calc-stream-test.cpp
Go to the documentation of this file.
1/*
2 CalcStream(Test) - detailed coverage of engine calculation streams
3
4 Copyright (C)
5 2011, Hermann Vosseler <Ichthyostega@web.de>
6
7  **Lumiera** is free software; you can redistribute it and/or modify it
8  under the terms of the GNU General Public License as published by the
9  Free Software Foundation; either version 2 of the License, or (at your
10  option) any later version. See the file COPYING for further details.
11
12* *****************************************************************/
13
19#include "lib/test/run.hpp"
20#include "lib/error.hpp"
21
23
24//#include <ctime>
25
26using test::Test;
27//using std::rand;
28
29
30namespace steam {
31namespace engine{
32namespace test {
33
34 namespace { // test fixture...
35
36 } // (End) test fixture
37
38
39
40 /***************************************************************/
51 class CalcStream_test : public Test
52 {
53
54 virtual void
55 run (Arg)
56 {
57 UNIMPLEMENTED ("in-depth coverage of calculation streams");
58 }
59
60 };
61
62
64 LAUNCHER (CalcStream_test, "function engine");
65
66
67
68}}} // namespace steam::engine::test
Abstract Base Class for all testcases.
Definition run.hpp:54
Access point for the (core) calculation service of the render engine.
Lumiera error handling (C++ interface).
Steam-Layer implementation namespace root.
Test runner and basic definitions for tests.
Simplistic test class runner.
#define LAUNCHER(_TEST_CLASS_, _GROUPS_)
Definition run.hpp:116