ucharnames_test.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // Copyright 2009 The Closure Library Authors. All Rights Reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS-IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. goog.provide('goog.i18n.uCharNamesTest');
  15. goog.setTestOnly('goog.i18n.uCharNamesTest');
  16. goog.require('goog.i18n.uCharNames');
  17. goog.require('goog.testing.jsunit');
  18. function testToName() {
  19. var result = goog.i18n.uCharNames.toName(' ');
  20. assertEquals('Space', result);
  21. }
  22. function testToNameForNumberKey() {
  23. var result = goog.i18n.uCharNames.toName('\u2028');
  24. assertEquals('Line Separator', result);
  25. }
  26. function testToNameForVariationSelector() {
  27. var result = goog.i18n.uCharNames.toName('\ufe00');
  28. assertEquals('Variation Selector - 1', result);
  29. }
  30. function testToNameForVariationSelectorSupp() {
  31. var result = goog.i18n.uCharNames.toName('\uDB40\uDD00');
  32. assertEquals('Variation Selector - 17', result);
  33. }
  34. function testToNameForNull() {
  35. var result = goog.i18n.uCharNames.toName('a');
  36. assertNull(result);
  37. }