Files
Slim/Slim.Tests/Models/ThrowingService.cs
T
amacocian 30705c58cc Increase code coverage
Fix exception handling
2021-09-07 12:55:58 +02:00

13 lines
225 B
C#

using System;
namespace Slim.Tests.Models
{
public sealed class ThrowingService : IThrowingService
{
public ThrowingService()
{
throw new InvalidOperationException();
}
}
}