- Author:
- David Nickerson <david.nickerson@gmail.com>
- Date:
- 2021-09-16 00:41:19+12:00
- Desc:
- Updating Noble 1962 model:
* Exposing the membrane potential to the top-level model;
* adding SED-ML for the paced and pacemaker variants of the model.
Using OpenCOR Snapshot release 2021-09-14.
- Permanent Source URI:
- https://models.fieldml.org/workspace/a1/rawfile/f954e59183314cd37f86c8832dc81317d01c8ec5/dojo-presentation/js/dojo/dojox/collections/tests/Queue.js
dojo.provide("dojox.collections.tests.Queue");
dojo.require("dojox.collections.Queue");
tests.register("dojox.collections.tests.Queue", [
function testCtor(t){
var q=new dojox.collections.Queue(["foo","bar","test","bull"]);
t.assertEqual(4, q.count);
},
function testClear(t){
var q=new dojox.collections.Queue(["foo","bar","test","bull"]);
q.clear();
t.assertEqual(0, q.count);
},
function testClone(t){
var q=new dojox.collections.Queue(["foo","bar","test","bull"]);
var cloned=q.clone();
t.assertEqual(q.count, cloned.count);
t.assertEqual(q.toArray().join(), cloned.toArray().join());
},
function testContains(t){
var q=new dojox.collections.Queue(["foo","bar","test","bull"]);
t.assertTrue(q.contains("bar"));
t.assertFalse(q.contains("faz"));
},
function testGetIterator(t){
var q=new dojox.collections.Queue(["foo","bar","test","bull"]);
var itr=q.getIterator();
while(!itr.atEnd()){ itr.get(); }
t.assertEqual("bull", itr.element);
},
function testPeek(t){
var q=new dojox.collections.Queue(["foo","bar","test","bull"]);
t.assertEqual("foo", q.peek());
},
function testDequeue(t){
var q=new dojox.collections.Queue(["foo","bar","test","bull"]);
t.assertEqual("foo", q.dequeue());
t.assertEqual("bar,test,bull", q.toArray().join(","));
},
function testEnqueue(t){
var q=new dojox.collections.Queue(["foo","bar","test","bull"]);
q.enqueue("bull");
t.assertEqual("bull", q.toArray().pop());
}
]);