aboutsummaryrefslogtreecommitdiff
path: root/test/background/mock/MockZoomPresenter.ts
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2020-12-03 23:15:24 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2020-12-09 23:09:34 +0900
commit8bbc3d9d159237f280c3e952cd1cb124601ed6d6 (patch)
tree4e2d9c23d0a25209fdd8ba9dd6849ce66df8d2df /test/background/mock/MockZoomPresenter.ts
parent7305bc1c34ceced31db943c8f23ed826d3d522f0 (diff)
Add operator tests
Diffstat (limited to 'test/background/mock/MockZoomPresenter.ts')
-rw-r--r--test/background/mock/MockZoomPresenter.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/background/mock/MockZoomPresenter.ts b/test/background/mock/MockZoomPresenter.ts
new file mode 100644
index 0000000..a1ca100
--- /dev/null
+++ b/test/background/mock/MockZoomPresenter.ts
@@ -0,0 +1,15 @@
+import ZoomPresenter from "../../../src/background/usecases/ZoomPresenter";
+
+export default class MockZoomPresenter implements ZoomPresenter {
+ resetZoom(): Promise<void> {
+ throw new Error("not implemented");
+ }
+
+ zoomIn(): Promise<void> {
+ throw new Error("not implemented");
+ }
+
+ zoomOut(): Promise<void> {
+ throw new Error("not implemented");
+ }
+}