xref: /haiku/src/tests/servers/debug/DebugWindowTest.cpp (revision 3af8011358bd4c624a0979336d48dabb466171ed)
1 /*
2  * Copyright 2019, Adrien Destugues <pulkomandy@pulkomandy.tk>
3  * Distributed under terms of the MIT license.
4  */
5 
6 #include "DebugWindow.h"
7 
8 #include <Application.h>
9 
10 
11 int main(void)
12 {
13 	BApplication app("application/x-vnd.haiku-debugwindowtest");
14 	DebugWindow* window = new DebugWindow("test");
15 	return window->Go();
16 }
17