/test/language/unclassified/test_clone.e

http://github.com/tybor/Liberty · Specman e · 101 lines · 68 code · 12 blank · 21 comment · 0 complexity · b80d78dcc49b3bacefd7e09305903397 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_CLONE
  5. inherit
  6. ANY
  7. redefine copy, is_equal
  8. end
  9. insert
  10. EIFFELTEST_TOOLS
  11. undefine copy, is_equal
  12. end
  13. create {}
  14. main
  15. feature {ANY}
  16. s1, s2: STRING
  17. a1, a2: ANIMAL
  18. ai1, ai2: ARRAY[INTEGER_8]
  19. p1, p2: LIB_TEST_POINT
  20. t1, t2: TRIANGLE
  21. main
  22. local
  23. test_clone: like Current
  24. do
  25. s1 := "foo"
  26. s2 := s1.twin
  27. assert(s1 /= s2)
  28. assert(s1.is_equal(s2))
  29. assert(s2.capacity >= s2.count)
  30. s1.put('b', 2)
  31. assert(not s1.is_equal(s2))
  32. create {CAT} a1
  33. a2 := a1.twin
  34. assert(a1 /= a2)
  35. assert(a1.is_equal(a2))
  36. ai1 := {ARRAY[INTEGER_8] 1, << 1, 2, 3 >> }
  37. ai2 := ai1.twin
  38. assert(ai1.is_equal(ai2))
  39. assert(ai1 /= ai2)
  40. create p1.make(1, 2)
  41. p2 := p1.twin
  42. assert(p1 /= p2)
  43. assert(p1.x = p2.x)
  44. assert(p1.y = p2.y)
  45. assert(p1.same_dynamic_type(p2))
  46. create t1.make(p1, p2, p2)
  47. t2 := t1.twin
  48. assert(t1 /= t2)
  49. assert(t1.same_dynamic_type(t2))
  50. assert(t1.p1 = t2.p1)
  51. assert(t1.p2 = t2.p2)
  52. assert(t1.p3 = t2.p3)
  53. assert(t2.p2 = t2.p3)
  54. test_clone := Current.twin
  55. assert(test_clone /= Current)
  56. assert(test_clone.same_dynamic_type(Current))
  57. assert(test_clone.is_equal(Current))
  58. assert(test_clone.s1 = Void)
  59. assert(test_clone.s2 = Void)
  60. assert(test_clone.ai1 = Void)
  61. assert(test_clone.t1 = Void)
  62. assert(test_clone.t2 = Void)
  63. end
  64. copy (other: like Current)
  65. do
  66. end
  67. is_equal (other: like Current): BOOLEAN
  68. do
  69. Result := True
  70. end
  71. end -- class TEST_CLONE
  72. --
  73. -- ------------------------------------------------------------------------------------------------------------------------------
  74. -- Copyright notice below. Please read.
  75. --
  76. -- SmartEiffel is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License,
  77. -- as published by the Free Software Foundation; either version 2, or (at your option) any later version.
  78. -- SmartEiffel is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY; without even the implied warranty
  79. -- of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have
  80. -- received a copy of the GNU General Public License along with SmartEiffel; see the file COPYING. If not, write to the Free
  81. -- Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
  82. --
  83. -- Copyright(C) 1994-2002: INRIA - LORIA (INRIA Lorraine) - ESIAL U.H.P. - University of Nancy 1 - FRANCE
  84. -- Copyright(C) 2003-2006: INRIA - LORIA (INRIA Lorraine) - I.U.T. Charlemagne - University of Nancy 2 - FRANCE
  85. --
  86. -- Authors: Dominique COLNET, Philippe RIBET, Cyril ADRIAN, Vincent CROIZIER, Frederic MERIZEN
  87. --
  88. -- http://SmartEiffel.loria.fr - SmartEiffel@loria.fr
  89. -- ------------------------------------------------------------------------------------------------------------------------------