Lumiera  0.pre.03
»edit your freedom«
scheduler-usage-test.cpp
Go to the documentation of this file.
1 /*
2  SchedulerUsage(Test) - verify standard usage patterns of the scheduler service
3 
4  Copyright (C)
5  2023, 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 "vault/gear/scheduler.hpp"
21 //#include "lib/time/timevalue.hpp"
22 //#include "lib/format-cout.hpp"
23 //#include "lib/util.hpp"
24 
25 //#include <utility>
26 
27 using test::Test;
28 //using std::move;
29 //using util::isSameObject;
30 
31 
32 namespace vault{
33 namespace gear {
34 namespace test {
35 
36 // using lib::time::FrameRate;
37 // using lib::time::Offset;
38 // using lib::time::Time;
39 
40 
41 
42 
43 
44  /*************************************************************************/
50  class SchedulerUsage_test : public Test
51  {
52 
53  virtual void
54  run (Arg)
55  {
56  simpleUsage();
58  setupLalup();
59  }
60 
61 
64  void
66  {
67  }
68 
69 
70 
73  void
75  {
76  }
77 
78 
79 
82  void
84  {
85  }
86  };
87 
88 
90  LAUNCHER (SchedulerUsage_test, "unit engine");
91 
92 
93 
94 }}} // namespace vault::gear::test
Definition: run.hpp:40
Abstract Base Class for all testcases.
Definition: run.hpp:53
Service for coordination and dispatch of render activities.
Simplistic test class runner.
Vault-Layer implementation namespace root.