版本号

This commit is contained in:
2026-08-02 17:28:44 +08:00 Unverified
parent 8cb9b4f57b
commit f7c73247d6
9 changed files with 163 additions and 1 deletions
@@ -0,0 +1,14 @@
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);
}
}