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="/tracing/base/unittest/test_case.html"> 8 <script> 9 'use strict'; 10 11 tr.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