You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
479 B
26 lines
479 B
# 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) |
|
|
|
|
|
|
|
|