home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
lang
/
eiffel
/
smalleif.97
/
se.t
/
SmallEiffel
/
lib_test
/
aux_rename3b.e
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-05-02
|
448 b
|
34 lines
class AUX_RENAME3B
inherit
AUX_RENAME3A
rename
nb_element as taille
end
creation make
feature
make is
do
taille := 6;
if read_nb_element /= taille then
std_output.put_string("TEST_RENAME3: ERROR Test #1%N");
end;
if plein then
std_output.put_string("TEST_RENAME3: ERROR Test #2%N");
end;
end
plein: BOOLEAN is
do
Result := taille = 10;
end
invariant
taille >= 0;
end