void Start()
 {
     test = new Tests.Tests("test.txt");
     SetStartPoint();
     Debug.Log("Epizod: " + episode);
     episodeActionDictionary = new Dictionary <int, int>();
     //Debug.Log("Pozycja startowa: " + Round(startPosition.x) + "," + Round(startPosition.y));
     //InvokeRepeating("DebugLogs", 0.0f, 1.0f); //wywołuj logi co zadany czas
     SetPlayerOnStart();
     Reward = 0;
 }
 public async Task can_get_from_bbc()
 {
     var tests = new Tests.Tests(Guid.NewGuid(), _logger);
     await tests.BbcGetRequest();
 }
 public async Task can_post_to_mvc_app_async()
 {
     var tests = new Tests.Tests(Guid.NewGuid(), _logger);
     await tests.ASyncTestMvcPostRequest();
 }
 public async Task can_get_from_mvc_app_async()
 {
     var tests = new Tests.Tests(Guid.NewGuid(), _logger);
     await tests.ASyncTestMvcGetRequest();
 }
 public async Task can_register_user_on_web_forms_app_async()
 {
     var tests = new Tests.Tests(Guid.NewGuid(), _logger);
     await tests.ASyncTestWebFormsGetAndPost();
 }
Exemple #6
0
 static void Main(string[] args)
 {
     Tests.Tests test = new Tests.Tests();
     try
     {
         test.TestExporter();
         test.TestFactory();
         test.TestImporter();
         Console.WriteLine("Testy przeszły");
     }
     catch (Exception e)
     {
         Console.WriteLine("Testy nie przechodzą");
     }
     Console.ReadKey();
 }