Package ch.bailu.gtk.glib
Interface TestTrapFlags
public interface TestTrapFlags
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Default behaviour.static final int
If this flag is given, stdin of the
child process is shared with stdin of its parent process.static final int
Redirect stderr of the test child to
`/dev/null` so it cannot be observed on the console during test
runs.static final int
Redirect stdout of the test child to
`/dev/null` so it cannot be observed on the console during test
runs.
-
Field Details
-
DEFAULT
static final int DEFAULTDefault behaviour. Since: 2.74- See Also:
-
SILENCE_STDOUT
static final int SILENCE_STDOUTRedirect stdout of the test child to
`/dev/null` so it cannot be observed on the console during test
runs. The actual output is still captured though to allow later
tests with g_test_trap_assert_stdout().- See Also:
-
SILENCE_STDERR
static final int SILENCE_STDERRRedirect stderr of the test child to
`/dev/null` so it cannot be observed on the console during test
runs. The actual output is still captured though to allow later
tests with g_test_trap_assert_stderr().- See Also:
-
INHERIT_STDIN
static final int INHERIT_STDINIf this flag is given, stdin of the
child process is shared with stdin of its parent process.
It is redirected to `/dev/null` otherwise.- See Also:
-