blob: 2e4fd5c176890a31352fdd7baa75c237fdedf3e8 [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/find_control.html">
<link rel="import" href="/core/test_utils.html">
<script>
'use strict';
tv.b.unittest.testSuite(function() {
test('instantiate', function() {
var ctl = new TracingFindControl();
ctl.controller = {
findNext: function() { },
findPrevious: function() { },
reset: function() {},
filterHits: ['a', 'b'],
currentHitIndex: 0
};
this.addHTMLOutput(ctl);
});
});
</script>