14 lines
370 B
C#
14 lines
370 B
C#
using KArtSell.BuildingBlocks.Versioning;
|
|
|
|
namespace KArtSell.SignalEngine.UnitTests.BuildingBlocks;
|
|
|
|
public sealed class VersionSetTests
|
|
{
|
|
[Fact]
|
|
public void Blank_version_component_is_rejected()
|
|
{
|
|
var value = new VersionSet("dataset", "data", "model", "config", "", "contract");
|
|
Assert.Throws<ArgumentException>(value.EnsureValid);
|
|
}
|
|
}
|