-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
application bug fixes, generic table class
- Loading branch information
1 parent
8cfdb2f
commit f67c572
Showing
7 changed files
with
158 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# | ||
# testInterfaces.py | ||
# | ||
# D. Clarke | ||
# | ||
# Testing of some generic interfacing tools. | ||
# | ||
|
||
from latqcdtools.interfaces.interfaces import latexTable, redmineTable | ||
import latqcdtools.base.logger as logger | ||
|
||
logger.set_log_level('INFO') | ||
|
||
def testInterfaces(): | ||
test = latexTable() | ||
test.append([1,2,3]) | ||
test.append([1,2,3]) | ||
test.append([1,2,3]) | ||
test.outputTable('testInterface.tex') | ||
test = redmineTable() | ||
test.append([1,2,3]) | ||
test.append([1,2,3]) | ||
test.append([1,2,3]) | ||
test.outputTable('testInterface.redmine') | ||
logger.TBPass('No problems encountered.') | ||
|
||
if __name__ == '__main__': | ||
testInterfaces() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,7 @@ cd .. | |
|
||
cd interfaces | ||
runTestRoutine testReadWriteConf.py | ||
runTestRoutine testInterfaces.py | ||
cd .. | ||
|
||
|
||
|