| 12345678910111213141516171819 |
- using Business.Domain;
- using Shouldly;
- using Xunit;
- namespace Bussiness.Domain.Test
- {
- public class ic_substitute_Tests
- {
- [Theory]
- [InlineData("aaa")]
- [InlineData("bbb")]
- public void SetText(string text)
- {
- var comment = new ic_substitute { substitute_type = 1, substitute_code = "CCC" };
- comment.substitute_code=text;
- comment.substitute_code.ShouldBe(text);
- }
- }
- }
|