75d88c5f39
* Use IProgress instead of custom type * Format * ProgressArgs are a readonly struct * fix tests
7 lines
155 B
C#
7 lines
155 B
C#
namespace Speckle.Sdk.Tests.Unit;
|
|
|
|
public class UnitTestProgress<T>(Action<T> handler) : IProgress<T>
|
|
{
|
|
public void Report(T value) => handler(value);
|
|
}
|