From d5e3c0726e311e244ac78e13a671edc88508d637 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Thu, 5 Nov 2020 18:15:57 +0300 Subject: [PATCH] Update Testing.md --- docs/en/Testing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/Testing.md b/docs/en/Testing.md index 524b808df4..0a617174ed 100644 --- a/docs/en/Testing.md +++ b/docs/en/Testing.md @@ -514,7 +514,7 @@ namespace MyProject public static class TestData { public static Guid User1Id = Guid.Parse("41951813-5CF9-4204-8B18-CD765DBCBC9B"); - public static Guid User2Id = Guid.Parse("41951813-5CF9-4204-8B18-CD765DBCBC9B"); + public static Guid User2Id = Guid.Parse("2DAB4460-C21B-4925-BF41-A52750A9B999"); } } ```` @@ -647,7 +647,7 @@ namespace MyProject.Issues } ```` -It's that simple. This test method tests everything, including the application service, EF Core mapping, object to object mapping and the repository implementation. In this way, you can fully test the Application & Domain Layers of your application. +It's that simple. This test method tests everything, including the application service, EF Core mapping, object to object mapping and the repository implementation. In this way, you can fully test the Application Later and the Domain Layer of your solution. ## UI Tests