blob: efeb9853a88aa926695ed728cf8cdccced918d6b [file] [log] [blame]
<!DOCTYPE html>
<!--
Copyright (c) 2013 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="/core/analysis/single_object_snapshot_sub_view.html">
<link rel="import" href="/core/test_utils.html">
<link rel="import" href="/core/selection.html">
<link rel="import" href="/model/model.html">
<script>
'use strict';
tr.b.unittest.testSuite(function() {
test('instantiate_snapshotView', function() {
var i10 = new tr.model.ObjectInstance(
{}, '0x1000', 'cat', 'name', 10);
var s10 = i10.addSnapshot(10, {foo: 1});
i10.updateBounds();
var selection = new tr.c.Selection();
selection.push(s10);
var view = document.createElement('tr-c-a-single-object-snapshot-sub-view');
view.selection = selection;
this.addHTMLOutput(view);
});
});
</script>