Files
Academic-Affairs-System/tests/Jiaowu.Api.Tests/SystemControllerTests.cs
T
2026-08-02 17:28:44 +08:00

15 lines
304 B
C#

using Jiaowu.Api.Controllers;
namespace Jiaowu.Api.Tests;
public sealed class SystemControllerTests
{
[Fact]
public void GetVersion_ReturnsConfiguredApplicationVersion()
{
var response = new SystemController().GetVersion();
Assert.Equal("1.0.0", response.Version);
}
}