using NUnit.Framework; namespace Test.GBase.Client { [TestFixture] public class Tests { [SetUp] public void Setup() { } [Test] public void CheckBasicConnectionWithServer() { Assert.Pass(); } } }