我的一个单元测试需要在运行时通过Product
动态加载类,我已经为_Customers = await _context.Customers.SelectMany(c => c.orders.SelectMany(o => o.Products
.Where(p => DiscountItems.Contains(p, new ItemComparer()))))
.ToListAsync();
插件配置了Class.forName(full_qualified_class_name)
配置,但是我仍然观察到additionalClasspathElement
。 / p>
我也尝试了surefire
和ClassNotFoundException
,但是它们都没有帮助。
关于如何解决此类问题是否有任何建议?
谢谢。