using System; using NUnit.Framework; using ShareeBike.Model; using ShareeBike.Model.Map; using ShareeBike.Model.Services.CopriApi; using ShareeBike.Services.CopriApi; namespace SharedBusinessLogic.Tests.Services.CopriApi { [TestFixture] public class TestResult { [Test] public void TestCtor() { Assert.That( new Result(typeof(TestResult), new TestResult(), null).GeneralData, Is.Not.Null); } [Test] public void TestGeneralData() { Assert.That( new Result(typeof(TestResult), new TestResult(), new GeneralData( MapSpanFactory.Create(), "Hello", new Version(0, 0), new ResourceUrls())).GeneralData.MerchantMessage, Is.EqualTo("Hello")); } } }