OpenShot Library | OpenShotAudio 0.2.2
juce_UnitTestCategories.h
1
2/** @weakgroup juce_core-unit_tests
3 * @{
4 */
5/*
6 ==============================================================================
7
8 This file is part of the JUCE library.
9 Copyright (c) 2017 - ROLI Ltd.
10
11 JUCE is an open source library subject to commercial or open-source
12 licensing.
13
14 The code included in this file is provided under the terms of the ISC license
15 http://www.isc.org/downloads/software-support-policy/isc-license. Permission
16 To use, copy, modify, and/or distribute this software for any purpose with or
17 without fee is hereby granted provided that the above copyright notice and
18 this permission notice appear in all copies.
19
20 JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
21 EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
22 DISCLAIMED.
23
24 ==============================================================================
25*/
26
27namespace juce
28{
29
30namespace UnitTestCategories
31{
32 static const String analytics { "Analytics" };
33 static const String audio { "Audio" };
34 static const String audioProcessorParameters { "AudioProcessorParameters" };
35 static const String blocks { "Blocks" };
36 static const String compression { "Compression" };
37 static const String containers { "Containers" };
38 static const String cryptography { "Cryptography" };
39 static const String dsp { "DSP" };
40 static const String files { "Files" };
41 static const String function { "Function" };
42 static const String gui { "GUI" };
43 static const String json { "JSON" };
44 static const String maths { "Maths" };
45 static const String midi { "MIDI" };
46 static const String networking { "Networking" };
47 static const String osc { "OSC" };
48 static const String smoothedValues { "SmoothedValues" };
49 static const String streams { "Streams" };
50 static const String text { "Text" };
51 static const String threads { "Threads" };
52 static const String time { "Time" };
53 static const String values { "Values" };
54 static const String xml { "XML" };
55}
56
57} // namespace juce
58
59/** @}*/