note
	description: "[
		Testing suite for the DECIMAL Class covering the +, -, *, and / operation capabilities.
	]"
	author: "Connor Dear, Jonathan Ostroff"
	date: "June 18 2019"
	revision: "1.00"

class interface
	DECIMAL_PRIMARY_OPERATION_TEST

create 
	make

feature -- Tests

	t1: BOOLEAN

	t2: BOOLEAN
			-- Negative + _______

	t3: BOOLEAN
			-- Zero + ________

	t4: BOOLEAN

	t5: BOOLEAN
			-- minus Negative - _________

	t6: BOOLEAN
			-- minus Zero - _______

	t7: BOOLEAN
			-- multiplication Positive * ______

	t8: BOOLEAN
			-- multiplication Negative * ______

	t9: BOOLEAN
			-- multiplication Zero * ______

	t10: BOOLEAN
			-- Division - Positive / _______

	t11: BOOLEAN
			-- Division - Negative / ________

	t12: BOOLEAN
			-- Division - Zero / ______
	
end -- class DECIMAL_PRIMARY_OPERATION_TEST

Generated by ISE EiffelStudio