(t *testing.T)
| 102 | } |
| 103 | |
| 104 | func TestScaleOnResize(t *testing.T) { |
| 105 | Run(RunOptions{ |
| 106 | HeadlessMode: true, |
| 107 | NoRun: true, |
| 108 | }, &testScene{}) |
| 109 | if ScaleOnResize() != opts.ScaleOnResize { |
| 110 | t.Error("ScaleOnResize didn't return the proper value.") |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | func TestGameWidthHeight(t *testing.T) { |
| 115 | Run(RunOptions{ |
nothing calls this directly
no test coverage detected