Begin Refactor StageXL into Engine
This commit is contained in:
parent
9c37f87045
commit
6b0fae44b6
5 changed files with 185 additions and 23 deletions
15
test/src/render_test.dart
Normal file
15
test/src/render_test.dart
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import 'dart:html' as html;
|
||||
import 'dart:math';
|
||||
|
||||
@TestOn('browser')
|
||||
import 'package:rules_of_living/src/Render.dart';
|
||||
import 'package:test/test.dart';
|
||||
|
||||
void main() {
|
||||
Render sut;
|
||||
setUp(() {
|
||||
html.CanvasElement canvas = html.CanvasElement();
|
||||
sut = Render(canvas, 8);
|
||||
});
|
||||
group("colorMap", () {});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue