Loading [MathJax]/extensions/tex2jax.js
Cantera
2.6.0
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
Variables
a
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
v
x
Typedefs
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
Typedefs
Enumerations
Related Functions
Files
File List
File Members
All
a
b
c
e
f
i
m
n
p
r
s
t
v
w
x
Functions
Variables
Macros
a
c
e
f
m
n
p
s
t
v
x
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
include
cantera
test
gtest_utils.h
1
// This file is part of Cantera. See License.txt in the top-level directory or
2
// at https://cantera.org/license.txt for license and copyright information.
3
4
#ifndef CT_GTEST_UTILS_H
5
#define CT_GTEST_UTILS_H
6
7
// Wrap a test name in SLOW_TEST to disable it if the "skip_slow_tests=y" option
8
// is passed to SCons. For example:
9
// TEST_F(GriMatrix, SLOW_TEST(VcsNonideal_CH4_O2))
10
11
#ifdef CT_SKIP_SLOW
12
#define SLOW_TEST(x) DISABLED_ ## x
13
#else
14
#define SLOW_TEST(x) x
15
#endif
16
17
#endif
Generated by
1.9.2