Application.Tests.EmployeeTests.TextFeedbackIsEmptyByDefault C# (CSharp) Method

TextFeedbackIsEmptyByDefault() private method

private TextFeedbackIsEmptyByDefault ( ) : void
return void
        public void TextFeedbackIsEmptyByDefault()
        {
            sut = new Employee(Guid.NewGuid(), "Testaaja", "Teppo", "Devaaja", "Turku", false);

            Assert.IsNotNull(sut.TextFeedback);
            Assert.AreEqual(0, sut.TextFeedback.Count);
        }