Doxygen: magically insert a reference to the test class
this bit of Sed magic relies on the fact that we happen to write
the almost correct class name of a test into the header comment.
HOWTO:
for F in $(find tests -type f \( -name '*.cpp' \) -exec egrep -q '§§TODO§§' {} \; -print);
do sed -r -i -e'
2 {h;x;s/\s+(.+)\(Test\).*$/\\ref \1_test/;x};
/§§TODO§§/ {s/§§TODO§§//;G;s/\n//}'
$F;
done
This commit is contained in:
parent
42d97f6cf6
commit
155bf95ce5
207 changed files with 222 additions and 226 deletions
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file sync-classlock-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref SyncClasslock_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file sync-locking-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref SyncLocking_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file sync-timedwait-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref SyncTimedwait_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file sync-waiting-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref SyncWaiting_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file thread-local-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref ThreadLocal_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file thread-wrapper-join-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref ThreadWrapperJoin_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file thread-wrapper-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref ThreadWrapper_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file diagnostic-context-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref DiagnosticContext_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file streamtypebasicstest.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref StreamTypeBasics_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file streamtypelifecycletest.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref StreamTypeLifecycle_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file digxel-configurations-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref DigxelConfigurations_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file digxel-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref Digxel_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file format-support-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref FormatSupport_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file quantiser-basics-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref QuantiserBasics_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
LumiBasics(Test) - working with Lumiera's internal Time values
|
||||
TimeBasics(Test) - working with Lumiera's internal Time values
|
||||
|
||||
Copyright (C) Lumiera.org
|
||||
2008, Hermann Vosseler <Ichthyostega@web.de>
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file time-basics-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref TimeBasics_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file time-control-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref TimeControl_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file time-formats-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref TimeFormats_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file time-mutation-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref TimeMutation_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file time-parsing-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref TimeParsing_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file time-quantisation-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref TimeQuantisation_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file time-value-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref TimeValue_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file visitingtool-extended-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref VisitingToolExtended_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file visitingtool-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref VisitingTool_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file subsystem-runner-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref SubsystemRunner_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file dummy-job.cpp
|
||||
** unit test §§TODO§§
|
||||
** Implementation of a dummy render job for unit tests
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file job-hash-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref JobHash_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file scheduler-interface-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref SchedulerInterface_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file media-access-mock-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref MediaAccessMock_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file asset-category-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref AssetCategory_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file basicpipetest.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref BasicPipe_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file compoundmediatest.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref CompoundMedia_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file create-asset-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref CreateAsset_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file deleteassettest.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref DeleteAsset_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file dependent-assets-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref DependentAssets_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file entry-id-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref EntryID_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file identityofassetstest.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref IdentityOfAssets_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file makecliptest.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref MakeClip_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
MediaStructureQuery(Test) - check functionallity used for creating media assets
|
||||
MediaStructureQuery(Test) - check functionality used for creating media assets
|
||||
|
||||
Copyright (C) Lumiera.org
|
||||
2008, Hermann Vosseler <Ichthyostega@web.de>
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file mediastructurequerytest.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref MediaStructureQuery_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file time-grid-basics-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref TimeGridBasics_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file orderingofassetstest.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref OrderingOfAssets_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file typed-id-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref TypedID_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file argument-tuple-accept-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref ArgumentTupleAccept_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file command-argument-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref CommandArgument_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file command-basic-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref CommandBasic_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file command-binding-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref CommandBinding_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file command-clone-builder-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref CommandCloneBuilder_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file command-equality-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref CommandEquality_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file command-message-binding-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref CommandMessageBinding_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file command-mutation-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref CommandMutation_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file command-registry-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref CommandRegistry_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file command-use1-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref CommandUse1_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file command-use2-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref CommandUse2_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file command-use3-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref CommandUse3_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file handling-pattern-basics-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref HandlingPatternBasics_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file handling-pattern-standard-impl-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref HandlingPatternStandardImpl_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file memento-tie-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref MementoTie_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file test-dummy-commands.cpp
|
||||
** unit test §§TODO§§
|
||||
** Implementation of dummy command operations for unit tests
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file buff-table-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref BuffTable_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file buffer-metadata-key-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref BufferMetadataKey_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file buffer-metadata-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref BufferMetadata_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file buffer-provider-protocol-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref BufferProviderProtocol_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file calc-stream-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref CalcStream_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file dispatcher-interface-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref DispatcherInterface_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file engine-interface-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref EngineInterface_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file node-basic-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref NodeBasic_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file node-fabrication-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref NodeFabrication_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file node-operation-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref NodeOperation_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file node-source-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref NodeSource_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file testframe-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref TestFrame_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
/*u4
|
||||
/*
|
||||
TrackingHeapBlockProvider(Test) - verify a support facility for diagnostic/test purposes
|
||||
|
||||
Copyright (C) Lumiera.org
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file tracking-heap-block-provider-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref TrackingHeapBlockProvider_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file buildsegmenttest.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref BuildSegment_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file buildertooltest.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref BuilderTool_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file fixture-change-detector-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref FixtureChangeDetector_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
@ -87,7 +87,8 @@ namespace test {
|
|||
|
||||
|
||||
/*****************************************************************************//**
|
||||
* @test TODO blubb
|
||||
* @test planned test for detecting changes in a given segmentation
|
||||
* @todo just a placeholder, nothing done here thus far (2016)
|
||||
*
|
||||
* @see mobject::builder::FixtureChangeDetector
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file model-port-registry-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref ModelPortRegistry_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file segmentation-datastructure-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref SegmentationDatastructure_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file rendersegmenttest.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref RenderSegment_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file mobject-interface-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref MObjectInterface_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file mobject-ref-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref MObjectRef_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file output-mapping-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref OutputMapping_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file placement-basic-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref PlacementBasic_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file placement-hierarchy-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref PlacementHierarchy_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file placement-object-identity-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref PlacementObjectIdentity_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file placement-ref-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref PlacementRef_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file addcliptest.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref AddClip_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file defs-manager-impl-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref DefsManagerImpl_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file defs-manager-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref DefsManager_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file defs-registry-impl-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref DefsRegistryImpl_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file deletecliptest.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref DeleteClip_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file placement-index-query-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref PlacementIndexQuery_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file placement-index-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref PlacementIndex_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file placement-scope-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref PlacementScope_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file query-focus-stack-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref QueryFocusStack_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file query-focus-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref QueryFocus_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file query-resolver-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref QueryResolver_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file rebuildfixturetest.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref RebuildFixture_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file scope-path-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref ScopePath_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file scope-query-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref ScopeQuery_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file session-element-query-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref SessionElementQuery_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file session-element-tracker-test.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref SessionElementTracker_test
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
* *****************************************************/
|
||||
|
||||
/** @file sessionmanagertest.cpp
|
||||
** unit test §§TODO§§
|
||||
** unit test \ref SessionManager_test
|
||||
*/
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue