using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization.Formatters;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Collections.ObjectModel;
using System.Threading.Tasks;
public async void Start()
if (isSuccessful) _success = true;
public class SomeTestClass
_client = new SomeClass();
_client.IsConnected().Should().BeFalse();
_client.IsFailed().Should().BeFalse();
WaitForClientToConnect();
_client.IsConnected().Should().BeTrue();
_client.IsFailed().Should().BeFalse();
private void WaitForClientToConnect()
var task = Task.Run(_client.Connect);
public static void Test()
new SomeTestClass().SomeTest();
public static void Main()
Console.WriteLine("Environment version: {0} ({1})", System.Runtime.InteropServices.RuntimeInformation.FrameworkDescription , GetNetCoreVersion());
Console.WriteLine("Failed with unhandled exception: ");
public static string GetNetCoreVersion()
var assembly = typeof(System.Runtime.GCSettings).GetTypeInfo().Assembly;
var assemblyPath = assembly.CodeBase.Split(new[] { '/', '\\' }, StringSplitOptions.RemoveEmptyEntries);
int netCoreAppIndex = Array.IndexOf(assemblyPath, "Microsoft.NETCore.App");
if (netCoreAppIndex > 0 && netCoreAppIndex < assemblyPath.Length - 2)
return assemblyPath[netCoreAppIndex + 1];