1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using Luticate2.Auth.Utils.Business.ObjectConverter;
- using Xunit;
-
- namespace Luticate2.Auth.Tests
- {
- public class RandomTests
- {
-
- // [Fact]
- // public void Test1()
- // {
- // var dbContext = new luticate2Context();
- // var items = dbContext.LuGroups.Where(groups => groups.LuGroupsObjects.Any(x => x.Priority == 0));
- // var list = items.ToList();
- // Assert.NotNull(list);
- // Assert.Equal(1, list.Count);
- // }
- //
- // [Fact]
- // public void Test2()
- // {
- // var dbContext = new luticate2Context();
- // var items = dbContext.LuGroups.OrderBy(x => x.Id).Where(groups => groups.LuGroupsObjects.Any(x => x.Priority == 0));
- // var list = items.ToList();
- // Assert.NotNull(list);
- // Assert.Equal(1, list.Count);
- // }
- //
- // [Fact]
- // public void Test3()
- // {
- // var dbContext = new luticate2Context();
- // var items = dbContext.LuGroups.OrderBy(x => x.Id);
- // var list = items.ToList();
- // Assert.NotNull(list);
- // Assert.Equal(2, list.Count);
- // }
-
- // protected void AddILuExpressionConverter<TTypeFrom, TTypeTo, TTypeImpl>(IServiceCollection services)
- // where TTypeImpl : class, ILuExpressionConverter<TTypeFrom, TTypeTo>
- // {
- // services.AddSingleton<ILuExpressionConverter<TTypeFrom, TTypeTo>, TTypeImpl>();
- // services.TryAddSingleton<ILuExpressionConverter<TTypeFrom>, TTypeImpl>();
- // }
-
- [Fact]
- public void Test()
- {
- // var parentScopeVar = new TestDbo1();
- // Expression<Func<TestDbo2, Guid>> expDbo = (x => parentScopeVar.Id);
- // var type = typeof(ILuObjectConverterDescriptor<,>);
- // var gtype = type.MakeGenericType(typeof(int), typeof(Enumerable));
- }
-
- }
- }
|