#24 Create project structure for unit tests

Refactor project's structure
closes #24
This commit is contained in:
Marc-Antoine Lafreniere
2019-02-05 13:45:15 -05:00
parent b6bf4d9291
commit 9ef1058012
14 changed files with 5783 additions and 5776 deletions

View File

@@ -1,5 +1,5 @@
from utils.pbmformator import formatPbm from pcbdevice.utils.pbmformator import formatPbm
from utils.savetofile import matrixToFile from pcbdevice.utils.savetofile import matrixToFile
if __name__ == "__main__": if __name__ == "__main__":
# Usage example # Usage example

View File

View File

View File

@@ -0,0 +1,5 @@
from unittest import TestCase
class TestFormatPbm(TestCase):
pass

View File

View File

@@ -3,6 +3,8 @@ import math
""" """
Reformat the file receive by the binary to ascii converter to have matrix with the right width and height Reformat the file receive by the binary to ascii converter to have matrix with the right width and height
""" """
def formatPbm(pbmFile): def formatPbm(pbmFile):
dimensionLineIndex = 2 dimensionLineIndex = 2
completeFile = [] completeFile = []