Skip to content

Commit

Permalink
Include CWL to output. Refs #7893.
Browse files Browse the repository at this point in the history
  • Loading branch information
wdzhou committed Sep 9, 2013
1 parent a5042c9 commit cf9a66c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,7 @@ namespace DataHandling
<< ") found in the specified region from input. ";
throw runtime_error(errss.str());
}
parammap["CWL"] = cwl;

double tempdb;
for (int i = startlineindex+1; i <= endlineindex; ++i)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class LoadFullprofResolutionTest : public CxxTest::TestSuite
TS_ASSERT(outws);

TS_ASSERT_EQUALS(outws->columnCount(), 2);
TS_ASSERT_EQUALS(outws->rowCount(), 27);
TS_ASSERT_EQUALS(outws->rowCount(), 28);

// 3. Verify value
map<string, double> parammap;
Expand Down Expand Up @@ -93,7 +93,7 @@ class LoadFullprofResolutionTest : public CxxTest::TestSuite
TS_ASSERT(outws);

TS_ASSERT_EQUALS(outws->columnCount(), 2);
TS_ASSERT_EQUALS(outws->rowCount(), 27);
TS_ASSERT_EQUALS(outws->rowCount(), 28);

// 3. Verify value
map<string, double> parammap;
Expand Down Expand Up @@ -138,7 +138,7 @@ class LoadFullprofResolutionTest : public CxxTest::TestSuite

// Check table workspace size
TS_ASSERT_EQUALS(outws->columnCount(), 3);
TS_ASSERT_EQUALS(outws->rowCount(), 27);
TS_ASSERT_EQUALS(outws->rowCount(), 28);

// Verify value
map<string, double> parammap1;
Expand Down Expand Up @@ -191,7 +191,7 @@ class LoadFullprofResolutionTest : public CxxTest::TestSuite

// Check table workspace size
TS_ASSERT_EQUALS(outws->columnCount(), 4);
TS_ASSERT_EQUALS(outws->rowCount(), 27);
TS_ASSERT_EQUALS(outws->rowCount(), 28);

// Verify value
map<string, double> parammap1;
Expand Down

0 comments on commit cf9a66c

Please sign in to comment.