From 0955b75b21ec5b19f732e59e688665100b3d8b91 Mon Sep 17 00:00:00 2001 From: Christopher Wolf <4867233+HaGGi13@users.noreply.github.com> Date: Sun, 22 Feb 2026 18:44:35 +0100 Subject: [PATCH] Remove empty test class and add badges to README --- README.md | 13 +++++++++++++ .../DurationMancer.Tests/DurationTimeParserTests.cs | 9 --------- 2 files changed, 13 insertions(+), 9 deletions(-) delete mode 100644 tests/DurationMancer.Tests/DurationTimeParserTests.cs diff --git a/README.md b/README.md index 613ced5..3578c73 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +[![Build and analyze][1]][10] +[![Quality Gate Status][2]][11] + # DurationMancer DurationMancer is a simple library that provides a flexible time parser that understands both technical and natural language inputs. You can use these formats wherever a time duration is required, and you don't want to deal with the hassle of parsing strings yourself. @@ -91,3 +94,13 @@ TimeSpan result2 = DurationTimeParser.Parse(input2); ## Benchmarks For detailed benchmark results, please check the [Benchmarks page](https://github.com/HaGGi13/DurationMancer/wiki/Benchmarks) in the Wiki. + + + +[1]: https://github.com/HaGGi13/DurationMancer/actions/workflows/build.yaml/badge.svg +[2]: https://sonarcloud.io/api/project_badges/measure?project=HaGGi13_DurationMancer&metric=alert_status + + + +[10]: https://github.com/HaGGi13/DurationMancer/actions/workflows/build.yaml "Build pipeline" +[11]: https://sonarcloud.io/summary/new_code?id=HaGGi13_DurationMancer "Latest new code analysis" diff --git a/tests/DurationMancer.Tests/DurationTimeParserTests.cs b/tests/DurationMancer.Tests/DurationTimeParserTests.cs deleted file mode 100644 index 13d2f6d..0000000 --- a/tests/DurationMancer.Tests/DurationTimeParserTests.cs +++ /dev/null @@ -1,9 +0,0 @@ -using AwesomeAssertions; -using DurationMancer.Tests.TestData; - -namespace DurationMancer.Tests; - -public static partial class DurationTimeParserTests -{ - -}