From 106683530c9f4160bee1523916522fe47e9e6dfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Wed, 8 Jul 2020 17:43:04 +0300 Subject: [PATCH] Add BookStoreTestConsts.CollectionDefinitionName --- docs/en/Tutorials/Part-4.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/en/Tutorials/Part-4.md b/docs/en/Tutorials/Part-4.md index 0325f3f60a..95fdacc69f 100644 --- a/docs/en/Tutorials/Part-4.md +++ b/docs/en/Tutorials/Part-4.md @@ -83,6 +83,9 @@ using Xunit; namespace Acme.BookStore.Books { +{{if DB=="Mongo"}} + [Collection(BookStoreTestConsts.CollectionDefinitionName)] +{{end}} public class BookAppService_Tests : BookStoreApplicationTestBase { private readonly IBookAppService _bookAppService; @@ -173,6 +176,9 @@ using Xunit; namespace Acme.BookStore.Books { +{{if DB=="Mongo"}} + [Collection(BookStoreTestConsts.CollectionDefinitionName)] +{{end}} public class BookAppService_Tests : BookStoreApplicationTestBase { private readonly IBookAppService _bookAppService;