aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qquickcanvasitem/data/tst_pattern.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qquickcanvasitem/data/tst_pattern.qml')
-rw-r--r--tests/auto/declarative/qquickcanvasitem/data/tst_pattern.qml34
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/auto/declarative/qquickcanvasitem/data/tst_pattern.qml b/tests/auto/declarative/qquickcanvasitem/data/tst_pattern.qml
deleted file mode 100644
index dd5b6628e8..0000000000
--- a/tests/auto/declarative/qquickcanvasitem/data/tst_pattern.qml
+++ /dev/null
@@ -1,34 +0,0 @@
-import QtQuick 2.0
-import QtTest 1.0
-import "testhelper.js" as Helper
-Canvas {
- id:canvas; width:100;height:50; renderTarget: Canvas.Image
- TestCase {
- //TODO
- name: "pattern"; when: windowShown
- function test_basic() {
- var ctx = canvas.getContext('2d');
- ctx.reset();
- }
- function test_animated() {
- var ctx = canvas.getContext('2d');
- ctx.reset();
- }
- function test_image() {
- var ctx = canvas.getContext('2d');
- ctx.reset();
- }
- function test_modified() {
- var ctx = canvas.getContext('2d');
- ctx.reset();
- }
- function test_paint() {
- var ctx = canvas.getContext('2d');
- ctx.reset();
- }
- function test_repeat() {
- var ctx = canvas.getContext('2d');
- ctx.reset();
- }
- }
-}