PageRenderTime 49ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/libformula-1.1.3/test/org/pentaho/reporting/libraries/formula/function/information/IsNonTextFunctionTest.java

#
Java | 45 lines | 21 code | 5 blank | 19 comment | 0 complexity | 3b695f9f1c10f480c6ae18cbde34163d MD5 | raw file
Possible License(s): LGPL-2.1
  1. /*
  2. * This program is free software; you can redistribute it and/or modify it under the
  3. * terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software
  4. * Foundation.
  5. *
  6. * You should have received a copy of the GNU Lesser General Public License along with this
  7. * program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
  8. * or from the Free Software Foundation, Inc.,
  9. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  10. *
  11. * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
  12. * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. * See the GNU Lesser General Public License for more details.
  14. *
  15. * Copyright (c) 2006 - 2009 Pentaho Corporation and Contributors. All rights reserved.
  16. */
  17. package org.pentaho.reporting.libraries.formula.function.information;
  18. import org.pentaho.reporting.libraries.formula.FormulaTestBase;
  19. /**
  20. * @author Cedric Pronzato
  21. */
  22. public class IsNonTextFunctionTest extends FormulaTestBase
  23. {
  24. public void testDefault() throws Exception
  25. {
  26. runDefaultTest();
  27. }
  28. public Object[][] createDataTest()
  29. {
  30. return new Object[][]
  31. {
  32. {"ISNONTEXT(1)", Boolean.TRUE},
  33. {"ISNONTEXT(TRUE())", Boolean.TRUE},
  34. {"ISNONTEXT(\"1\")", Boolean.FALSE},
  35. {"ISNONTEXT([.B7])", Boolean.FALSE},
  36. {"ISNONTEXT([.B9])", Boolean.TRUE},
  37. {"ISNONTEXT([.B8])", Boolean.TRUE},
  38. };
  39. }
  40. }