lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [6444] Fix defect introduced 20151006T1517Z: failed to upd


From: Greg Chicares
Subject: [lmi-commits] [6444] Fix defect introduced 20151006T1517Z: failed to update unit test
Date: Mon, 14 Dec 2015 18:47:43 +0000

Revision: 6444
          http://svn.sv.gnu.org/viewvc/?view=rev&root=lmi&revision=6444
Author:   chicares
Date:     2015-12-14 18:47:42 +0000 (Mon, 14 Dec 2015)
Log Message:
-----------
Fix defect introduced 20151006T1517Z: failed to update unit test

Modified Paths:
--------------
    lmi/trunk/wx_test_validate_output.cpp

Modified: lmi/trunk/wx_test_validate_output.cpp
===================================================================
--- lmi/trunk/wx_test_validate_output.cpp       2015-12-13 22:00:46 UTC (rev 
6443)
+++ lmi/trunk/wx_test_validate_output.cpp       2015-12-14 18:47:42 UTC (rev 
6444)
@@ -270,7 +270,7 @@
         ,std::string const& insured_name
         )
 {
-    std::string const census_file(corp_name + ".cns" + tsv_ext());
+    std::string const census_file(corp_name + tsv_ext());
     output_file_existence_checker output_census(census_file);
 
     struct print_case
@@ -302,7 +302,7 @@
         ,std::string const& insured_name
         )
 {
-    std::string const roster_file(corp_name + ".cns.roster" + tsv_ext());
+    std::string const roster_file(corp_name + ".roster" + tsv_ext());
     output_file_existence_checker output_roster(roster_file);
 
     struct print_roster
@@ -311,8 +311,12 @@
             {
                 wxUIActionSimulator ui;
 
-                // "Census|Print roster to spreadsheet"
+                // "Census|Print group roster..."
                 ui.Char('o', wxMOD_CONTROL | wxMOD_SHIFT);
+
+                // Select "Print roster to spreadsheet" from the popup menu.
+                ui.Char('o');
+
                 wxYield();
             }
         };
@@ -342,7 +346,7 @@
     wxYield();
 
     std::string const ill_data_file
-        (corp_name + "." + insured_name + serial_suffix(1) + ".ill" + tsv_ext()
+        (corp_name + "." + insured_name + serial_suffix(1) + tsv_ext()
         );
     output_file_existence_checker output_ill_data(ill_data_file);
 
@@ -419,21 +423,21 @@
 /// Verify that these files were created:
 ///   ABC.John_Brown.000000001.monthly_trace.tsv
 ///   ABC.000000002.monthly_trace.tsv
-///   ABC.cns.tsv
+///   ABC.tsv
 /// ...and delete all three now.
 ///
-/// Census | Print roster to spreadsheet
+/// Census | Print group roster... | Print roster to spreadsheet
 /// Verify that these files were created:
 ///   ABC.John_Brown.000000001.monthly_trace.tsv
 ///   ABC.000000002.monthly_trace.tsv
-//    ABC.cns.roster.tsv
+//    ABC.roster.tsv
 /// ...and delete all three now.
 ///
 /// select the "John Brown" cell
 /// Census | Run cell
 /// Illustration | Copy full illustration data [Ctrl-D]
 /// Verify that this file was created:
-///   ABC.John_Brown.000000001.ill.tsv
+///   ABC.John_Brown.000000001.tsv
 /// and that its contents have been placed on the clipboard.
 ///
 /// [These two functions:




reply via email to

[Prev in Thread] Current Thread [Next in Thread]