Package org.testfx.api
Class FxAssertContext
- java.lang.Object
-
- org.testfx.api.FxAssertContext
-
public class FxAssertContext extends java.lang.Object
Stores contextual information forFxAssert
:- a
NodeFinder
, which defaults toFxServiceContext.getNodeFinder()
- a
CaptureSupport
, which defaults toFxServiceContext.getCaptureSupport()
- a
-
-
Field Summary
Fields Modifier and Type Field Description private CaptureSupport
captureSupport
private NodeFinder
nodeFinder
-
Constructor Summary
Constructors Constructor Description FxAssertContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CaptureSupport
getCaptureSupport()
NodeFinder
getNodeFinder()
void
setCaptureSupport(CaptureSupport captureSupport)
void
setNodeFinder(NodeFinder nodeFinder)
-
-
-
Field Detail
-
nodeFinder
private NodeFinder nodeFinder
-
captureSupport
private CaptureSupport captureSupport
-
-
Method Detail
-
getNodeFinder
public NodeFinder getNodeFinder()
-
setNodeFinder
public void setNodeFinder(NodeFinder nodeFinder)
-
getCaptureSupport
public CaptureSupport getCaptureSupport()
-
setCaptureSupport
public void setCaptureSupport(CaptureSupport captureSupport)
-
-