Commit de44701f authored by zeiss's avatar zeiss
Browse files

No commit message

No commit message
parent 6c8a538a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
 ** @author   STF 409
 ** @version  $Rev$
 ** @purpose  1:7.1.1, Ensure that the addition of two integers 
              in a constant is accepted and evaluated correctly.
              in a constant is accepted.
 ** @verdict  pass accept
 *****************************************************************/

+4 −3
Original line number Diff line number Diff line
/*****************************************************************
 ** @author   STF 409
 ** @version  $Rev$
 ** @purpose  1:7.1.1, Ensure that multiplication of two integers is accepted.
 ** @purpose  1:7.1.1, Ensure that the substraction of two integers 
              in a constant is accepted.
 ** @verdict  pass accept
 *****************************************************************/

module Sem_070101_ArithmeticOperators_003 {
module Sem_070101_ArithmeticOperators_001 {

const integer c_result := 10 + 2;
const integer c_result := 10 - 2;

}
+13 −0
Original line number Diff line number Diff line
/*****************************************************************
 ** @author   STF 409
 ** @version  $Rev$
 ** @purpose  1:7.1.1, Ensure that the multiplication of two integers 
 **           in a constant is accepted.
 ** @verdict  pass accept
 *****************************************************************/

module Sem_070101_ArithmeticOperators_003 {

const integer c_result := 10 * 2;

}
+13 −0
Original line number Diff line number Diff line
/*****************************************************************
 ** @author   STF 409
 ** @version  $Rev: 12 $
 ** @purpose  1:7.1.1, Ensure that the division of two integers 
 **           in a constant is accepted.
 ** @verdict  pass accept
 *****************************************************************/

module Sem_070101_ArithmeticOperators_003 {

const integer c_result := 10 / 3;

}