jsketcher/web/app/struct-tests.js
Val Erastov 658f2220ee structs
2015-01-30 16:26:42 -08:00

15 lines
355 B
JavaScript

TCAD.struct.tests = {};
TCAD.struct.tests.testHashTable = function() {
var map = new TCAD.struct.HashTable(TCAD.struct.stringEq, TCAD.struct.stringHash);
map.put("John", "Doe");
map.put("Patric", "Kane");
map.put("Andrew", "Wozniak");
console.log(map.get("John"));
console.log(map.get("Patric"));
console.log(map.get("Andrew"));
};