The goog.testing.ui.RendererHarness Class

goog.testing.ui.RendererHarness
> goog.Disposable

goog.testing.ui.RendererHarness(renderer, renderParent, decorateParent)

A driver for testing renderers.

renderer {goog.ui.ControlRenderer}
A renderer to test.
renderParent {Element}
The parent of the element where controls will be rendered.
decorateParent {Element}
The parent of the element where controls will be decorated.

.addOnDisposeCallback(callback, opt_scope)

Inherited from goog.Disposable .

Invokes a callback function when this object is disposed. Callbacks are invoked in the order in which they were added.

callback {!Function}
The callback function.
opt_scope {Object=}
An optional scope to call the callback in.

.assertDomMatches()

Assert that the rendered element and the decorated element match.

.attachControlAndDecorate(control)

Attach a control and decorate the element given in the constructor.

control {goog.ui.Control}
A control.
returns {Element}
The element created.

.attachControlAndRender(control)

Attach a control and render its DOM.

control {goog.ui.Control}
A control.
returns {Element}
The element created.

.creationStack {string}

Inherited from goog.Disposable .

If monitoring the goog.Disposable instances is enabled, stores the creation stack trace of the Disposable instance.

.dispose()

Inherited from goog.Disposable .

Disposes of the object. If the object hasn't already been disposed of, calls {@link #disposeInternal}. Classes that extend {@code goog.Disposable} should override {@link #disposeInternal} in order to delete references to COM objects, DOM nodes, and other disposable objects. Reentrant.

returns {void}
Nothing.

.isDisposed()

Inherited from goog.Disposable .

returns {boolean}
Whether the object has been disposed of.

.registerDisposable(disposable)

Inherited from goog.Disposable .

Associates a disposable object with this object so that they will be disposed together.

disposable {goog.disposable.IDisposable}
that will be disposed when this object is disposed.