Started working on frontend
All checks were successful
HopFrame CI / build (push) Successful in 44s
HopFrame CI / test (push) Successful in 52s

This commit is contained in:
2026-02-25 16:33:46 +01:00
parent d2082ef33c
commit ff2634ff41
27 changed files with 558 additions and 26 deletions

View File

@@ -87,8 +87,8 @@ public class ConfigurationHelperTests {
Assert.Equal(typeof(string), config.RepositoryType);
Assert.Equal(typeof(TestModel), config.TableType);
Assert.Equal("testmodel", config.Route);
Assert.Equal("TestModel", config.DisplayName);
Assert.Equal("testmodels", config.Route);
Assert.Equal("TestModels", config.DisplayName);
Assert.Equal(0, config.OrderIndex);
}

View File

@@ -2,7 +2,7 @@
public class TestModel {
public int Id { get; set; }
public string Name { get; set; }
public string Name { get; set; } = null!;
public int Method() => 42;