%PDF- %PDF-
| Direktori : /www/varak.net/wiki.varak.net/extensions/VisualEditor/lib/ve/tests/ |
| Current File : //www/varak.net/wiki.varak.net/extensions/VisualEditor/lib/ve/tests/ve.BranchNode.test.js |
/*!
* VisualEditor BranchNode tests.
*
* @copyright 2011-2016 VisualEditor Team and others; see http://ve.mit-license.org
*/
QUnit.module( 've.BranchNode' );
/* Stubs */
ve.BranchNodeStub = function VeBranchNodeStub( children ) {
// Parent constructor
ve.BranchNodeStub.super.call( this );
// Mixin constructor
ve.BranchNode.call( this, children );
};
OO.inheritClass( ve.BranchNodeStub, ve.Node );
OO.mixinClass( ve.BranchNodeStub, ve.BranchNode );
/* Tests */
QUnit.test( 'getChildren', 2, function ( assert ) {
var node1 = new ve.BranchNodeStub(),
node2 = new ve.BranchNodeStub( [ node1 ] );
assert.deepEqual( node1.getChildren(), [] );
assert.deepEqual( node2.getChildren(), [ node1 ] );
} );
QUnit.test( 'indexOf', 4, function ( assert ) {
var node1 = new ve.BranchNodeStub(),
node2 = new ve.BranchNodeStub(),
node3 = new ve.BranchNodeStub(),
node4 = new ve.BranchNodeStub( [ node1, node2, node3 ] );
assert.strictEqual( node4.indexOf( null ), -1 );
assert.strictEqual( node4.indexOf( node1 ), 0 );
assert.strictEqual( node4.indexOf( node2 ), 1 );
assert.strictEqual( node4.indexOf( node3 ), 2 );
} );