git-svn-id: https://xournal.svn.sourceforge.net/svnroot/xournal/trunk/xournalpp@116 9fe2bcd3-a095-4d8b-a836-9b85dc8d7627
parent
b42ea59a6b
commit
7cd7185fca
22 changed files with 234 additions and 0 deletions
@ -0,0 +1,23 @@ |
||||
# Xournal++ |
||||
# |
||||
# Testclass for Undo / Redohandler |
||||
# |
||||
# @author Xournal Team |
||||
# http://xournal.sf.net |
||||
# |
||||
# @license GPL |
||||
|
||||
from tools.ToolTest import ToolTest |
||||
import os |
||||
|
||||
# TODO: remove if implemented |
||||
from TestNotImplementedException import TestNotImplementedException |
||||
|
||||
|
||||
class ToolEraser(ToolTest): |
||||
def __init__(self, xoj): |
||||
ToolTest.__init__(self, xoj) |
||||
|
||||
def runTest(self): |
||||
raise TestNotImplementedException() |
||||
|
||||
@ -0,0 +1,26 @@ |
||||
# Xournal++ |
||||
# |
||||
# Testclass for Undo / Redohandler |
||||
# |
||||
# @author Xournal Team |
||||
# http://xournal.sf.net |
||||
# |
||||
# @license GPL |
||||
|
||||
from tools.ToolTest import ToolTest |
||||
import os |
||||
|
||||
class ToolHilighter(ToolTest): |
||||
def __init__(self, xoj): |
||||
ToolTest.__init__(self, xoj) |
||||
|
||||
def runTest(self): |
||||
self.xoj.setSelectedTool(self.xoj.TOOL_HILIGHTER) |
||||
self.xoj.setToolSize(self.xoj.TOOL_SIZE_FINE) |
||||
self.doTestInput() |
||||
|
||||
path = os.path.realpath(__file__ + '/../result.xoj') |
||||
self.checkContents(path) |
||||
|
||||
|
||||
|
||||
Binary file not shown.
@ -0,0 +1,23 @@ |
||||
# Xournal++ |
||||
# |
||||
# Testclass for Undo / Redohandler |
||||
# |
||||
# @author Xournal Team |
||||
# http://xournal.sf.net |
||||
# |
||||
# @license GPL |
||||
|
||||
from tools.ToolTest import ToolTest |
||||
import os |
||||
|
||||
# TODO: remove if implemented |
||||
from TestNotImplementedException import TestNotImplementedException |
||||
|
||||
|
||||
class ToolImage(ToolTest): |
||||
def __init__(self, xoj): |
||||
ToolTest.__init__(self, xoj) |
||||
|
||||
def runTest(self): |
||||
raise TestNotImplementedException() |
||||
|
||||
@ -0,0 +1,23 @@ |
||||
# Xournal++ |
||||
# |
||||
# Testclass for Undo / Redohandler |
||||
# |
||||
# @author Xournal Team |
||||
# http://xournal.sf.net |
||||
# |
||||
# @license GPL |
||||
|
||||
from tools.ToolTest import ToolTest |
||||
import os |
||||
|
||||
# TODO: remove if implemented |
||||
from TestNotImplementedException import TestNotImplementedException |
||||
|
||||
|
||||
class ToolRuler(ToolTest): |
||||
def __init__(self, xoj): |
||||
ToolTest.__init__(self, xoj) |
||||
|
||||
def runTest(self): |
||||
raise TestNotImplementedException() |
||||
|
||||
@ -0,0 +1,23 @@ |
||||
# Xournal++ |
||||
# |
||||
# Testclass for Undo / Redohandler |
||||
# |
||||
# @author Xournal Team |
||||
# http://xournal.sf.net |
||||
# |
||||
# @license GPL |
||||
|
||||
from tools.ToolTest import ToolTest |
||||
import os |
||||
|
||||
# TODO: remove if implemented |
||||
from TestNotImplementedException import TestNotImplementedException |
||||
|
||||
|
||||
class ToolSelectObject(ToolTest): |
||||
def __init__(self, xoj): |
||||
ToolTest.__init__(self, xoj) |
||||
|
||||
def runTest(self): |
||||
raise TestNotImplementedException() |
||||
|
||||
@ -0,0 +1,23 @@ |
||||
# Xournal++ |
||||
# |
||||
# Testclass for Undo / Redohandler |
||||
# |
||||
# @author Xournal Team |
||||
# http://xournal.sf.net |
||||
# |
||||
# @license GPL |
||||
|
||||
from tools.ToolTest import ToolTest |
||||
import os |
||||
|
||||
# TODO: remove if implemented |
||||
from TestNotImplementedException import TestNotImplementedException |
||||
|
||||
|
||||
class ToolSelectRange(ToolTest): |
||||
def __init__(self, xoj): |
||||
ToolTest.__init__(self, xoj) |
||||
|
||||
def runTest(self): |
||||
raise TestNotImplementedException() |
||||
|
||||
@ -0,0 +1,23 @@ |
||||
# Xournal++ |
||||
# |
||||
# Testclass for Undo / Redohandler |
||||
# |
||||
# @author Xournal Team |
||||
# http://xournal.sf.net |
||||
# |
||||
# @license GPL |
||||
|
||||
from tools.ToolTest import ToolTest |
||||
import os |
||||
|
||||
# TODO: remove if implemented |
||||
from TestNotImplementedException import TestNotImplementedException |
||||
|
||||
|
||||
class ToolSelectRect(ToolTest): |
||||
def __init__(self, xoj): |
||||
ToolTest.__init__(self, xoj) |
||||
|
||||
def runTest(self): |
||||
raise TestNotImplementedException() |
||||
|
||||
@ -0,0 +1,23 @@ |
||||
# Xournal++ |
||||
# |
||||
# Testclass for Undo / Redohandler |
||||
# |
||||
# @author Xournal Team |
||||
# http://xournal.sf.net |
||||
# |
||||
# @license GPL |
||||
|
||||
from tools.ToolTest import ToolTest |
||||
import os |
||||
|
||||
# TODO: remove if implemented |
||||
from TestNotImplementedException import TestNotImplementedException |
||||
|
||||
|
||||
class ToolShapeRecognizer(ToolTest): |
||||
def __init__(self, xoj): |
||||
ToolTest.__init__(self, xoj) |
||||
|
||||
def runTest(self): |
||||
raise TestNotImplementedException() |
||||
|
||||
@ -0,0 +1,23 @@ |
||||
# Xournal++ |
||||
# |
||||
# Testclass for Undo / Redohandler |
||||
# |
||||
# @author Xournal Team |
||||
# http://xournal.sf.net |
||||
# |
||||
# @license GPL |
||||
|
||||
from tools.ToolTest import ToolTest |
||||
import os |
||||
|
||||
# TODO: remove if implemented |
||||
from TestNotImplementedException import TestNotImplementedException |
||||
|
||||
|
||||
class ToolText(ToolTest): |
||||
def __init__(self, xoj): |
||||
ToolTest.__init__(self, xoj) |
||||
|
||||
def runTest(self): |
||||
raise TestNotImplementedException() |
||||
|
||||
@ -0,0 +1,23 @@ |
||||
# Xournal++ |
||||
# |
||||
# Testclass for Undo / Redohandler |
||||
# |
||||
# @author Xournal Team |
||||
# http://xournal.sf.net |
||||
# |
||||
# @license GPL |
||||
|
||||
from tools.ToolTest import ToolTest |
||||
import os |
||||
|
||||
# TODO: remove if implemented |
||||
from TestNotImplementedException import TestNotImplementedException |
||||
|
||||
|
||||
class VerticalTool(ToolTest): |
||||
def __init__(self, xoj): |
||||
ToolTest.__init__(self, xoj) |
||||
|
||||
def runTest(self): |
||||
raise TestNotImplementedException() |
||||
|
||||
Loading…
Reference in new issue