Package-level declarations
Types
The user-facing handle for driving a single isolated Swing-Compose composition under test.
Manual control over the frames ComposeSwingTest sends its own composition.
A predicate over a single AWT Component together with a human-readable description used in failure messages. Matchers are combined with and, or and not, and narrow a query wherever a finder, a filter or an assertion takes one.
Functions
Finds all nodes of type T. Convenience for onAllNodes(SwingMatcher.isOfType<T>()).
Finds all realized windows (see ComposeSwingTest.onWindow).
Finds the single node of type T. Convenience for onNode(SwingMatcher.isOfType<T>()).
Finds the single realized window (see ComposeSwingTest.onWindow). Convenience for the common one-window composition:
Finds the single realized window titled title. Convenience for onWindow(SwingMatcher.hasTitle(title)).
Sets up an isolated Swing-Compose composition, runs the suspending block against it on the EDT, and tears everything down.