blob: a855c3096ab4282fd48fc051eaee0ce74cc6f894 [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="/tracing/core/test_utils.html">
<link rel="import" href="/tracing/model/event.html">
<script>
'use strict';
tr.b.unittest.testSuite(function() {
var Event = tr.model.Event;
test('checkModelItem', function() {
var event = new Event;
assert.equal(event.modelItem, event);
});
});
</script>