You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
438 B
20 lines
438 B
using Microsoft.AspNetCore.Components;
|
|
using portfolio_siwa.Modeles;
|
|
|
|
namespace tests;
|
|
|
|
public class UnitTest1
|
|
{
|
|
[Fact]
|
|
public void Test1()
|
|
{
|
|
Assert.Equal(4, 2 + 2);
|
|
DetailsProjet details = new()
|
|
{
|
|
Titre = "Test Project",
|
|
Texte = new MarkupString("<p>This is a test project description.</p>"),
|
|
CheminImage = "test-image.jpg"
|
|
};
|
|
}
|
|
}
|