| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using Quadarax.Application.QLiberace.Base.Entities;
- using Quadarax.Application.QLiberace.Base.Tests.Entities.Base;
- namespace Quadarax.Application.QLiberace.Base.Tests.Entities
- {
- [TestFixture(Category = "Dao")]
- public class UserTest : BaseDaoTest<User>
- {
-
- [Test]
- public void HasClassPKOK()
- {
- CheckHasPK(string.Empty);
- }
- [Test]
- public void HasClassTrackedOK()
- {
- CheckHasTracked(string.Empty);
- }
- [Test]
- public void HasClassTableOK()
- {
- CheckClassTable(string.Empty);
- }
- [Test]
- public void ColumnMappingsOK()
- {
- CheckColumnMappings(nameof(User.LoginName), string.Empty, true, 100, null);
- CheckColumnMappings(nameof(Tenant.IsLocked), string.Empty, true, null, false);
- }
- protected override void OnSetup()
- {
- }
- protected override void OnTearDown()
- {
- }
- }
- }
|