Added more tests

This commit is contained in:
2025-01-19 12:12:01 +01:00
parent afe8a41f6c
commit 8d63910aae
14 changed files with 529 additions and 60 deletions

View File

@@ -1,7 +1,12 @@
namespace HopFrame.Core.Tests.Models;
using System.ComponentModel.DataAnnotations.Schema;
namespace HopFrame.Core.Tests.Models;
// A mock model for testing purposes
public class MockModel {
public int Id { get; set; }
public string? Name { get; set; }
[ForeignKey("other")]
public List<MockModel2> Model2 { get; set; }
}