()
| 49 | |
| 50 | // Helper to create a structured out object matching the default shape |
| 51 | function makeOut () |
| 52 | { |
| 53 | return { |
| 54 | local: { x: 0, y: 0, width: 0, height: 0 }, |
| 55 | global: { x: 0, y: 0, width: 0, height: 0 }, |
| 56 | lines: { shortest: 0, longest: 0, lengths: null, height: 0 }, |
| 57 | wrappedText: '', |
| 58 | words: [], |
| 59 | characters: [], |
| 60 | scaleX: 0, |
| 61 | scaleY: 0 |
| 62 | }; |
| 63 | } |
| 64 | |
| 65 | describe('GetBitmapTextSize', function () |
| 66 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…