OLD | NEW |
(Empty) | |
| 1 Simple Tests: |
| 2 test_simple.dart (main application) |
| 3 |
| 4 Works with templates: |
| 5 name_entry.tmpl - simple template expression with attributes |
| 6 name_entry2.tmpl - simple template expression inside nested tags |
| 7 name_entry_css.tmpl - simple template expression with CSS |
| 8 |
| 9 With Tests: |
| 10 test_with.dart (main application) |
| 11 |
| 12 Works with templates: |
| 13 productview.tmpl - simplest with template |
| 14 productview2.tmpl - with tested with var |
| 15 |
| 16 List Tests: |
| 17 test_list.dart (main application) |
| 18 |
| 19 Works with templates: |
| 20 applications.tmpl - simple list |
| 21 |
| 22 Complex Tests: |
| 23 test_complex.dart (main application) |
| 24 |
| 25 Works with templates: |
| 26 top_searches.tmpl - #each inside of a #with |
| 27 top_searches_css.tmpl - #each inside of a #with with CSS |
| 28 |
| 29 Complex #2 Tests: |
| 30 test_complex2.dart (main application) |
| 31 |
| 32 Works with templates: |
| 33 top_searches2.tmpl - #each inside of a #with w/ CSS and data model |
| 34 |
| 35 Real World Application - Lists w/ events |
| 36 real_app.dart (main application) |
| 37 |
| 38 Works with templates: |
| 39 realviews.tmpl - more complex app with event hookup (using var) |
| 40 |
| 41 To build and run the above tests with frog in the browser. Each .tmpl maps to |
| 42 a test name: |
| 43 |
| 44 simple1 => name_entry.tmpl |
| 45 simple2 => name_entry2.tmpl |
| 46 simple3 => name_entry_css.tmpl |
| 47 with1 => productview.tmpl |
| 48 with2 => productview2.tmpl |
| 49 list => applications.tmpl |
| 50 complex => top_searches.tmpl |
| 51 complexcss => top_searches_css.tmpl |
| 52 complex2 => top_searches2.tmpl |
| 53 real => realviews.tmpl |
| 54 |
| 55 e.g. to run the Real World Application do: |
| 56 |
| 57 cd utils/test/templates |
| 58 ./run real |
OLD | NEW |