(playing, paused)
| 3 | var Vector2 = require('../../../src/math/Vector2'); |
| 4 | |
| 5 | function createMockTween (playing, paused) |
| 6 | { |
| 7 | return { |
| 8 | isPlaying: function () { return playing || false; }, |
| 9 | isPaused: function () { return paused || false; }, |
| 10 | stop: vi.fn(), |
| 11 | pause: vi.fn(), |
| 12 | resume: vi.fn(), |
| 13 | data: null, |
| 14 | getValue: function () { return 0; } |
| 15 | }; |
| 16 | } |
| 17 | |
| 18 | function createMockPath (startX, startY) |
| 19 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…