[Quantproject-developers] QuantProject/t5_Testing/b1_ADT Sum.cs, 1.2, 1.3
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2010-03-28 16:26:37
|
Update of /cvsroot/quantproject/QuantProject/t5_Testing/b1_ADT In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv4694/b1_ADT Modified Files: Sum.cs Log Message: An assertion that was faulty on purpose, has been commented out Index: Sum.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/t5_Testing/b1_ADT/Sum.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Sum.cs 31 Jan 2010 19:14:58 -0000 1.2 --- Sum.cs 28 Mar 2010 16:26:30 -0000 1.3 *************** *** 3,7 **** Sum.cs ! Copyright (C) 2003 Glauco Siliprandi --- 3,7 ---- Sum.cs ! Copyright (C) 2010 Glauco Siliprandi *************** *** 26,30 **** using QuantProject.ADT.Statistics; ! namespace QuantProject.Testing.Statistics { /// <summary> --- 26,30 ---- using QuantProject.ADT.Statistics; ! namespace QuantTesting.ADT.Statistics { /// <summary> *************** *** 42,46 **** Assert.AreEqual( 3 , sumValue ); // this is ok // comment out the following statemente if you want to get a successfull test ! Assert.AreEqual( 3.1 , sumValue ); // this one faults } } --- 42,46 ---- Assert.AreEqual( 3 , sumValue ); // this is ok // comment out the following statemente if you want to get a successfull test ! // Assert.AreEqual( 3.1 , sumValue ); // this one faults } } |