/test/lib/string/test_string.e

http://github.com/tybor/Liberty · Specman e · 20 lines · 16 code · 4 blank · 0 comment · 0 complexity · 9a130cd0ff565a9a0244e403155986a7 MD5 · raw file

  1. class TEST_STRING
  2. insert
  3. EIFFELTEST_TOOLS
  4. create {}
  5. make
  6. feature {}
  7. make
  8. do
  9. echo("a string%N")
  10. echo("a fixed string%N".intern)
  11. end
  12. echo (s: ABSTRACT_STRING)
  13. do
  14. s.print_on(std_output)
  15. end
  16. end