LoggerTest.dpr 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. program LoggerTest;
  2. uses
  3. FastMM4,
  4. mybean.console,
  5. ceflib,
  6. SysUtils,
  7. Forms,
  8. LoggerTestFrm in 'LoggerTestFrm.pas' {Form1},
  9. SuperObjectCase in 'SuperObjectCase.pas' {SuperObjectCaseFrm},
  10. GroupTestCase in 'GroupTestCase.pas' {Form3},
  11. CACase in 'CACase.pas' {CACaseFrm},
  12. AudioCase in 'AudioCase.pas' {Form5};
  13. {$R *.res}
  14. begin
  15. IsMultiThread := TRUE;
  16. CefCache := ExtractFilePath(paramstr(0)) + 'cache';
  17. CefSingleProcess := False;
  18. if not CefLoadLibDefault then
  19. Exit;
  20. ApplicationContextInitialize;
  21. Application.Initialize;
  22. Application.MainFormOnTaskbar := True;
  23. Application.CreateForm(TForm1, Form1);
  24. // Application.CreateForm(TAppCentreTestCase, AppCentreTestCase);
  25. // Application.CreateForm(TSuperObjectCaseFrm, SuperObjectCaseFrm);
  26. // Application.CreateForm(TForm2, Form2);
  27. // Application.CreateForm(TShellExecuteCaseFrm, ShellExecuteCaseFrm);
  28. // Application.CreateForm(TCACaseFrm, CACaseFrm);
  29. // Application.CreateForm(TForm5, Form5);
  30. // Application.CreateForm(TForm3, Form3);
  31. Application.Run;
  32. end.