blob: 2c8825aa69d172a6dec1ead666dce20cec6d6003 [file] [log] [blame]
<!DOCTYPE html>
<!--
Copyright (c) 2014 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="/base/unittest/test_case.html">
<script>
'use strict';
tr.b.unittest.testSuite(function() {
test('parseFullyQualifiedName', function() {
var p = tr.b.unittest.TestCase.parseFullyQualifiedName('foo.bar');
assert.equal(p.suiteName, 'foo');
assert.equal(p.testCaseName, 'bar');
});
});
</script>