1<!DOCTYPE html>
2<!--
3Copyright (c) 2014 The Chromium Authors. All rights reserved.
4Use of this source code is governed by a BSD-style license that can be
5found in the LICENSE file.
6-->
7<link rel="import" href="/base/unittest/test_case.html">
8<script>
9'use strict';
10
11tr.b.unittest.testSuite(function() {
12  test('parseFullyQualifiedName', function() {
13    var p = tr.b.unittest.TestCase.parseFullyQualifiedName('foo.bar');
14    assert.equal(p.suiteName, 'foo');
15    assert.equal(p.testCaseName, 'bar');
16  });
17});
18</script>
19