From 74debb4b4ca20199912c1f2e06138679efb19949 Mon Sep 17 00:00:00 2001 From: djmil Date: Wed, 19 Jul 2023 09:47:58 +0200 Subject: [PATCH] wiki does not support space in file names --- Home.md | 2 +- Unit Tests.md => UnitTests.md | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename Unit Tests.md => UnitTests.md (100%) diff --git a/Home.md b/Home.md index 11d5597..be039e5 100644 --- a/Home.md +++ b/Home.md @@ -27,7 +27,7 @@ Different tests can be written at different levels of the system. At each level, ![Testing pyramid](https://blog.missiondata.com/wp-content/uploads/MD_TestingPyramid2x-1560x1045.png "Testing pyramid") ## Unit Tests -A [[Unit Tests]] exercises a small “unit” of the system that is isolated from the rest of the system. They should be simple and speedy. You want a high ratio of Unit Tests in your testing pyramid as they’re key to designing highly cohesive, loosely coupled software. +A [[UnitTests]] exercises a small “unit” of the system that is isolated from the rest of the system. They should be simple and speedy. You want a high ratio of Unit Tests in your testing pyramid as they’re key to designing highly cohesive, loosely coupled software. ## Integration Tests Integration Tests exercise a subset of the system and may exercise groups of units in one test. They are more complicated to write and maintain, and run slower than unit tests. diff --git a/Unit Tests.md b/UnitTests.md similarity index 100% rename from Unit Tests.md rename to UnitTests.md