From 67226136fd71baa13cd57a359db467ac250091e0 Mon Sep 17 00:00:00 2001 From: Oskar Dudycz Date: Thu, 17 Nov 2022 10:08:10 +0100 Subject: [PATCH] Added links to blog articles --- README.md | 9 +++++++-- mdsource/README.source.md | 5 ++++- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a913715..4b93c2f 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,10 @@ Current available for testing: - [Business Logic](#business-logic-testing), - [API](#api-testing). -Check also [introduction post on my blog](https://event-driven.io/en/ogooreck_sneaky_bdd_testing_framework/). +Check also my articles: +- [Ogooreck introduction](https://event-driven.io/en/ogooreck_sneaky_bdd_testing_framework/), +- [Testing business logic in Event Sourcing, and beyond!](https://event-driven.io/en/testing_event_sourcing/), +- [Writing and testing business logic in F#](https://event-driven.io/en/writing_and_testing_business_logic_in_fsharp/). ## Support @@ -131,6 +134,8 @@ public static class BankAccountEventsBuilder } ``` +See full sample in [tests](/src/Ogooreck.Sample.BusinessLogic.Tests/Deciders/BankAccountTests.cs). + **F#** ```fsharp module BankAccountTests @@ -249,7 +254,7 @@ let ``GIVEN closed bank account WHEN record deposit with valid params THEN fails |> ignore ``` -See full sample in [tests](/src/Ogooreck.Sample.BusinessLogic.Tests/Deciders/BankAccountTests.cs). +See full sample in [tests](/src/Ogooreck.Sample.BusinessLogic.FSharp.Tests/Deciders/BankAccountTests.fs). ### Event-Sourced command handlers diff --git a/mdsource/README.source.md b/mdsource/README.source.md index c5d8cd3..4b93c2f 100644 --- a/mdsource/README.source.md +++ b/mdsource/README.source.md @@ -23,7 +23,10 @@ Current available for testing: - [Business Logic](#business-logic-testing), - [API](#api-testing). -Check also [introduction post on my blog](https://event-driven.io/en/ogooreck_sneaky_bdd_testing_framework/). +Check also my articles: +- [Ogooreck introduction](https://event-driven.io/en/ogooreck_sneaky_bdd_testing_framework/), +- [Testing business logic in Event Sourcing, and beyond!](https://event-driven.io/en/testing_event_sourcing/), +- [Writing and testing business logic in F#](https://event-driven.io/en/writing_and_testing_business_logic_in_fsharp/). ## Support