/test/language/unclassified/jb/test_jb03.e

http://github.com/tybor/Liberty · Specman e · 71 lines · 39 code · 9 blank · 23 comment · 1 complexity · 70d414029b8eb1e289497747fa7ed311 MD5 · raw file

  1. -- This file is part of SmartEiffel The GNU Eiffel Compiler Tools and Libraries.
  2. -- See the Copyright notice at the end of this file.
  3. --
  4. class TEST_JB03
  5. -- From: Jacques Bouchard <bouchard@mageos.com>
  6. inherit
  7. AUX_JB03
  8. rename p as a_p
  9. redefine x
  10. end
  11. create {}
  12. make
  13. create {TEST_JB03}
  14. default_create
  15. feature {ANY}
  16. x: TEST_JB03
  17. p: STRING
  18. do
  19. Result := "TEST.p"
  20. end
  21. make
  22. do
  23. create y
  24. assert(y.generating_type = generating_type)
  25. y := Current
  26. assert(p.is_equal("TEST.p"))
  27. assert(a_p.is_equal("AUX.p"))
  28. assert(y.p.is_equal("TEST.p"))
  29. assert(y.a_p.is_equal("AUX.p"))
  30. end
  31. assert (boolean: BOOLEAN)
  32. do
  33. cpt := cpt + 1
  34. if not boolean then
  35. sedb_breakpoint
  36. std_output.put_string("TEST_JB03: ERROR Test # ")
  37. std_output.put_integer(cpt)
  38. std_output.put_string("%N")
  39. else
  40. --std_output.put_string("Yes%N")
  41. end
  42. end
  43. cpt: INTEGER
  44. end -- class TEST_JB03
  45. --
  46. -- ------------------------------------------------------------------------------------------------------------------------------
  47. -- Copyright notice below. Please read.
  48. --
  49. -- SmartEiffel is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License,
  50. -- as published by the Free Software Foundation; either version 2, or (at your option) any later version.
  51. -- SmartEiffel is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY; without even the implied warranty
  52. -- of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have
  53. -- received a copy of the GNU General Public License along with SmartEiffel; see the file COPYING. If not, write to the Free
  54. -- Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
  55. --
  56. -- Copyright(C) 1994-2002: INRIA - LORIA (INRIA Lorraine) - ESIAL U.H.P. - University of Nancy 1 - FRANCE
  57. -- Copyright(C) 2003-2006: INRIA - LORIA (INRIA Lorraine) - I.U.T. Charlemagne - University of Nancy 2 - FRANCE
  58. --
  59. -- Authors: Dominique COLNET, Philippe RIBET, Cyril ADRIAN, Vincent CROIZIER, Frederic MERIZEN
  60. --
  61. -- http://SmartEiffel.loria.fr - SmartEiffel@loria.fr
  62. -- ------------------------------------------------------------------------------------------------------------------------------