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.
24 lines
481 B
24 lines
481 B
# 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 |
|
|
|
#test with default stroke, stroke with pressure, stroke with ruler |
|
|
|
class ToolSelectObject(ToolTest): |
|
def __init__(self, xoj): |
|
ToolTest.__init__(self, xoj) |
|
|
|
def runTest(self): |
|
raise TestNotImplementedException() |
|
|
|
|