tests/PackTest.vala
[app.Builder.js] / tests / PackTest.vala
1 /**
2  * Test the pack code...
3
4
5 */
6  
7 int main (string[] args) {
8         Gtk.init (ref args);
9         GtkClutter.init (ref args);
10         new JsRender.Lang_Class();
11         GLib.Log.set_always_fatal(LogLevelFlags.LEVEL_ERROR | LogLevelFlags.LEVEL_CRITICAL); 
12         
13
14         Palete.Palete.
15
16         Project.Project.loadAll();
17         proj = Project.Project.getProject("Builder4");
18         
19         proj.scanDirs();
20         //
21         
22         //var iter = proj.sortedFiles().list_iterator();
23         //while (iter.next()) {  loadit(iter.get().name);       }
24         //loadit("WindowLeftProps");
25         //loadit("EditProject");
26         //loadit("Editor");
27         loadit("MainWindow");
28         Gtk.main();
29     
30         
31         return 0;
32 }
33