blob: 114c2b821ea2e44f474c0b47de62d901d0cd05c2 [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/test_utils.html">
<link rel="import" href="/model/event_set.html">
<link rel="import" href="/model/model.html">
<link rel="import" href="/ui/analysis/analysis_view.html">
<script>
'use strict';
tr.b.unittest.testSuite(function() {
var Model = tr.Model;
var EventSet = tr.model.EventSet;
test('analyzeSelectionWithSingleEvent', function() {
var model = new Model();
var fe1 = new tr.model.FlowEvent('cat', 1234, 'title', 7, 10, {});
var fe2 = new tr.model.FlowEvent('cat', 1234, 'title', 8, 20, {});
model.flowEvents.push(fe1);
model.flowEvents.push(fe2);
var selection = new EventSet();
selection.push(fe1);
selection.push(fe2);
assert.equal(selection.length, 2);
var subView = document.createElement('tr-ui-a-multi-flow-event-sub-view');
subView.selection = selection;
this.addHTMLOutput(subView);
});
});
</script>