Upstream version 11.40.271.0
[platform/framework/web/crosswalk.git] / src / third_party / trace-viewer / trace_viewer / base / unittest / test_case_test.html
1 <!DOCTYPE html>
2 <!--
3 Copyright (c) 2014 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7 <link rel="import" href="/base/unittest/test_case.html">
8 <script>
9 'use strict';
10
11 tv.unittest.testSuite(function() {
12   test('parseFullyQualifiedName', function() {
13     var p = tv.unittest.TestCase.parseFullyQualifiedName('foo.bar');
14     assertEquals(p.suiteName, 'foo');
15     assertEquals(p.testCaseName, 'bar');
16   });
17 });
18 </script>