home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 662 b | 54 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class TEST_EVAL9
-
- creation make
-
- feature
-
- make is
- local
- s: STRING;
- c: CHARACTER;
- i, value: INTEGER;
- do
- c := 'a';
- check
- c /= 'b'
- end;
- s := "foo";
- c := s.first;
- check
- s.count = 3;
- c = 'f';
- end;
- value := s.count;
- check
- value = 3;
- value = s.count;
- end;
- value := 6;
- check
- value = 6
- end;
- s.clear;
- check
- s.count = 0
- end;
-
- s := "oo";
- s.extend('f');
- check
- s.count = 3;
- end;
-
- check
- 4 >= 3
- end;
-
- end;
-
- end -- TEST_EVAL9
-
-