using NUnit.Framework; using TINK.Model.MiniSurvey; namespace TestShareeLib.Model.MiniSurvey { [TestFixture] public class TestMiniSurveyModel { [Test] public void TestCtor() { Assert.That( new MiniSurveyModel().Questions.Count, Is.EqualTo(0), "Question collection must not be null"); } } }