Fresco/Fresco-Test/syunit-c++/test test-ResultsMap.cc,1.3,1.4
Nathaniel Smith <[email protected]> Tue, 20 May 2003 04:06:30 -0500
| Newsgroups | gmane.comp.video.fresco.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvs/fresco/Fresco/Fresco-Test/syunit-c++/test
In directory purcel:/tmp/cvs-serv3366/test
Modified Files:
test-ResultsMap.cc
Log Message:
Old formatting changes that I forgot to check in.
Index: test-ResultsMap.cc
===================================================================
RCS file: /cvs/fresco/Fresco/Fresco-Test/syunit-c++/test/test-ResultsMap.cc,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- test-ResultsMap.cc 2 Apr 2003 22:12:28 -0000 1.3
+++ test-ResultsMap.cc 20 May 2003 09:06:28 -0000 1.4
@@ -7,40 +7,40 @@
namespace SyUnit
{
-/**
- * This is a class-level comment.
- */
-class ResultsMapTest : public SyUnit::TestCase
-{
-public:
-
/**
- * This is a comment on set_and_get().
- */
- void
- set_and_get()
- {
- ResultsMap rm;
- rm["key1"] = "value1";
- assert_equals(rm["key1"], "value1", "Set/get don't work.");
- }
-
- /**
- * This is a comment on appending().
- *
- * @depends test_map_properties
+ * This is a class-level comment.
*/
- void
- appending()
+ class ResultsMapTest : public SyUnit::TestCase
{
- ResultsMap rm;
- rm["key1"] = "value1";
- rm["key1"] += "value2";
- assert_equals(rm["key1"], "value1value2", "Appending doesn't work");
- }
-
- /**
- * This is a comment on basic_printing().
+ public:
+
+ /**
+ * This is a comment on set_and_get().
+ */
+ void
+ set_and_get()
+ {
+ ResultsMap rm;
+ rm["key1"] = "value1";
+ assert_equals(rm["key1"], "value1", "Set/get don't work.");
+ }
+
+ /**
+ * This is a comment on appending().
+ *
+ * @depends test_map_properties
+ */
+ void
+ appending()
+ {
+ ResultsMap rm;
+ rm["key1"] = "value1";
+ rm["key1"] += "value2";
+ assert_equals(rm["key1"], "value1value2", "Appending doesn't work");
+ }
+
+ /**
+ * This is a comment on basic_printing().
* @depends set_and_get
*/
void