PageRenderTime 43ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/Scenes/Tests/Program.cs

#
C# | 44 lines | 14 code | 7 blank | 23 comment | 0 complexity | 751a2764247ce71a22aaddf181e307ab MD5 | raw file
Possible License(s): Apache-2.0
  1. using NUnit.Framework;
  2. namespace Delta.Scenes.Tests
  3. {
  4. /// <summary>
  5. /// Scene tests to see how scenes work.
  6. /// </summary>
  7. internal class Program
  8. {
  9. #region Main (Static)
  10. /// <summary>
  11. /// Main entry point, will just call one of the tests, uncomment the rest
  12. /// </summary>
  13. [Test, Category("Visual")]
  14. public static void Main()
  15. {
  16. Tutorials.TestSimpleMainMenu();
  17. //Tutorials.CreateBackgroundScreen();
  18. //Tutorials.CreateScreenWithButton();
  19. //Tutorials.CreateSimpleUI();
  20. //Tutorials.UsingAnOwnUITheme();
  21. //Tutorials.LoadContentScene();
  22. //SceneTests.CreateCustomScene();
  23. //BaseControlsTests.AnchorPoint();
  24. //BaseControlsTests.Dragging();
  25. //PanelTests.DisplayPanelWithChildren();
  26. //PanelTests.DisplayTwoPanelsWithChildren();
  27. //UIThemeTests.RedTheme();
  28. //UIScreenTests.Tests.GetChildByPosition();
  29. //UIScreenTests.OpenAndClosingScenes();
  30. //UIScreenTests.UseSceneBackground();
  31. //UIScreenTests.OpenTwoNormalScreens();
  32. //TextBox.Tests.DisplayTextbox();
  33. //PerformanceTests.ScreenPerformance();
  34. }
  35. #endregion
  36. }
  37. }