ReflectionUtilsTest.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using Tede.Data.Utils;
  2. using Xunit;
  3. namespace Tede.Data.Tests.Core
  4. {
  5. public class ReflectionUtilsTest
  6. {
  7. public class MyClass
  8. {
  9. public string Foo { get; set; }
  10. private string Bar { get; set; }
  11. protected string Pro { get; set; }
  12. internal string Inter { get; set; }
  13. }
  14. [Fact]
  15. public void TestGetAllInstancePropertyInfosEmpty()
  16. {
  17. var properties = ReflectionUtils.GetTypeProperties(typeof(int));
  18. Assert.Empty(properties);
  19. }
  20. [Fact]
  21. public void TestGetAllInstancePropertyInfosObject()
  22. {
  23. var properties = ReflectionUtils.GetTypeProperties(typeof(MyClass));
  24. Assert.Equal(4, properties.Count);
  25. }
  26. [Fact]
  27. public void TestToKeyValueListEmpty()
  28. {
  29. var kvs = ReflectionUtils.ToKeyValueList(null);
  30. Assert.Empty(kvs);
  31. }
  32. [Fact]
  33. public void TestToKeyValueListObject()
  34. {
  35. var kvs = ReflectionUtils.ToKeyValueList(new
  36. {
  37. A = "a",
  38. B = "b",
  39. C = "c",
  40. D = "d"
  41. });
  42. Assert.Equal(4, kvs.Count);
  43. }
  44. }
  45. }