blob: ac051aaeda5e31cf9f0ed6015a7fa5883c76b502 [file] [log] [blame]
<!DOCTYPE html>
<!--
Copyright 2016 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<link rel="import" href="/tracing/value/diagnostics/diagnostic_map.html">
<link rel="import" href="/tracing/value/ui/diagnostic_map_table.html">
<script>
'use strict';
tr.b.unittest.testSuite(function() {
test('instantiate', function() {
var map0 = new tr.v.d.DiagnosticMap();
map0.set('genericA', new tr.v.d.Generic({a: 0}));
map0.set('genericB', new tr.v.d.Generic({b: 0}));
var map1 = new tr.v.d.DiagnosticMap();
map1.set('genericA', new tr.v.d.Generic({a: 1}));
map1.set('genericB', new tr.v.d.Generic({b: 1}));
var table = document.createElement('tr-v-ui-diagnostic-map-table');
table.diagnosticMaps = [map0, map1];
this.addHTMLOutput(table);
});
});
</script>