summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/chromeos/chromevox/common/string_util_test.unitjs
blob: efd31a5afdbbde1915a550a0a3d5c534a7f0ac9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright 2015 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.

// Include test fixture.
GEN_INCLUDE(['../testing/chromevox_unittest_base.js']);

/**
 * Test fixture.
 * @constructor
 * @extends {ChromeVoxUnitTestBase}
 */
function StringUtilUnitTest() {
  ChromeVoxUnitTestBase.call(this);
}

StringUtilUnitTest.prototype = {
  __proto__: ChromeVoxUnitTestBase.prototype,

  /** @override */
  closureModuleDeps: [
    'StringUtil',
  ],
};

TEST_F('StringUtilUnitTest', 'longestCommonPrefixLength', function() {
  var lcpl = StringUtil.longestCommonPrefixLength;
  assertEquals(0, lcpl('', ''));
  assertEquals(0, lcpl('', 'hello'));
  assertEquals(0, lcpl('hello', ''));
  assertEquals(1, lcpl('hi', 'hello'));
});