aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickcanvasitem/data/tst_pattern.qml
blob: dd5b6628e825215eafa9e296fd29e0c44bdf9171 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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();
      }
   }
}