diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 7e61be48c..c23af0b12 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -57,4 +57,4 @@ Check out [Dutch](https://github.com/Humanizr/Humanizer/blob/main/src/Humanizer/ [Russian](https://github.com/Humanizr/Humanizer/blob/main/src/Humanizer/Localisation/NumberToWords/RussianNumberToWordsConverter.cs) localisations for examples of how you can write a Converter for your language. You should then register your converter in the [ConverterFactory](https://github.com/Humanizr/Humanizer/blob/main/src/Humanizer/NumberToWordsExtension.cs#L13) for it to kick in on your locale. -Don't forget to write tests for your localisations. Check out the existing [DateHumanizeTests](https://github.com/Humanizr/Humanizer/blob/main/src/Humanizer.Tests.Shared/Localisation/ru-RU/DateHumanizeTests.cs), [TimeSpanHumanizeTests](https://github.com/Humanizr/Humanizer/blob/main/src/Humanizer.Tests.Shared/Localisation/ru-RU/TimeSpanHumanizeTests.cs) and [NumberToWordsTests](https://github.com/Humanizr/Humanizer/blob/main/src/Humanizer.Tests.Shared/Localisation/ru-RU/NumberToWordsTests.cs). +Don't forget to write tests for your localisations. Check out the existing [DateHumanizeTests](https://github.com/Humanizr/Humanizer/blob/main/src/Humanizer.Tests/Localisation/ru-RU/DateHumanizeTests.cs), [TimeSpanHumanizeTests](https://github.com/Humanizr/Humanizer/blob/main/src/Humanizer.Tests/Localisation/ru-RU/TimeSpanHumanizeTests.cs) and [NumberToWordsTests](https://github.com/Humanizr/Humanizer/blob/main/src/Humanizer.Tests/Localisation/ru-RU/NumberToWordsTests.cs). diff --git a/src/Humanizer.Tests.Shared/Humanizer.Tests.Shared.projitems b/src/Humanizer.Tests.Shared/Humanizer.Tests.Shared.projitems deleted file mode 100644 index ab50ef6c1..000000000 --- a/src/Humanizer.Tests.Shared/Humanizer.Tests.Shared.projitems +++ /dev/null @@ -1,248 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - true - fdec244b-f07e-4a5e-bb80-fbc6ac77a9aa - - - Humanizer.Tests - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/Humanizer.Tests.Shared/Humanizer.Tests.Shared.shproj b/src/Humanizer.Tests.Shared/Humanizer.Tests.Shared.shproj deleted file mode 100644 index 585175c8d..000000000 --- a/src/Humanizer.Tests.Shared/Humanizer.Tests.Shared.shproj +++ /dev/null @@ -1,12 +0,0 @@ - - - - fdec244b-f07e-4a5e-bb80-fbc6ac77a9aa - 14.0 - - - - - - - \ No newline at end of file diff --git a/src/Humanizer.Tests.Shared/ArticlePrefixSortTests.cs b/src/Humanizer.Tests/ArticlePrefixSortTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/ArticlePrefixSortTests.cs rename to src/Humanizer.Tests/ArticlePrefixSortTests.cs diff --git a/src/Humanizer.Tests.Shared/BitFieldEnumHumanizeTests.cs b/src/Humanizer.Tests/BitFieldEnumHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/BitFieldEnumHumanizeTests.cs rename to src/Humanizer.Tests/BitFieldEnumHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/BitFieldEnumUnderTest.cs b/src/Humanizer.Tests/BitFieldEnumUnderTest.cs similarity index 100% rename from src/Humanizer.Tests.Shared/BitFieldEnumUnderTest.cs rename to src/Humanizer.Tests/BitFieldEnumUnderTest.cs diff --git a/src/Humanizer.Tests.Shared/Bytes/ArithmeticTests.cs b/src/Humanizer.Tests/Bytes/ArithmeticTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Bytes/ArithmeticTests.cs rename to src/Humanizer.Tests/Bytes/ArithmeticTests.cs diff --git a/src/Humanizer.Tests.Shared/Bytes/ByteRateTests.cs b/src/Humanizer.Tests/Bytes/ByteRateTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Bytes/ByteRateTests.cs rename to src/Humanizer.Tests/Bytes/ByteRateTests.cs diff --git a/src/Humanizer.Tests.Shared/Bytes/ByteSizeExtensionsTests.cs b/src/Humanizer.Tests/Bytes/ByteSizeExtensionsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Bytes/ByteSizeExtensionsTests.cs rename to src/Humanizer.Tests/Bytes/ByteSizeExtensionsTests.cs diff --git a/src/Humanizer.Tests.Shared/Bytes/ComparingTests.cs b/src/Humanizer.Tests/Bytes/ComparingTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Bytes/ComparingTests.cs rename to src/Humanizer.Tests/Bytes/ComparingTests.cs diff --git a/src/Humanizer.Tests.Shared/Bytes/CreatingTests.cs b/src/Humanizer.Tests/Bytes/CreatingTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Bytes/CreatingTests.cs rename to src/Humanizer.Tests/Bytes/CreatingTests.cs diff --git a/src/Humanizer.Tests.Shared/Bytes/ParsingTests.cs b/src/Humanizer.Tests/Bytes/ParsingTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Bytes/ParsingTests.cs rename to src/Humanizer.Tests/Bytes/ParsingTests.cs diff --git a/src/Humanizer.Tests.Shared/Bytes/ToFullWordsTests.cs b/src/Humanizer.Tests/Bytes/ToFullWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Bytes/ToFullWordsTests.cs rename to src/Humanizer.Tests/Bytes/ToFullWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Bytes/ToStringTests.cs b/src/Humanizer.Tests/Bytes/ToStringTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Bytes/ToStringTests.cs rename to src/Humanizer.Tests/Bytes/ToStringTests.cs diff --git a/src/Humanizer.Tests.Shared/CasingTests.cs b/src/Humanizer.Tests/CasingTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/CasingTests.cs rename to src/Humanizer.Tests/CasingTests.cs diff --git a/src/Humanizer.Tests.Shared/CollectionHumanizeTests.cs b/src/Humanizer.Tests/CollectionHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/CollectionHumanizeTests.cs rename to src/Humanizer.Tests/CollectionHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/DateHumanize.cs b/src/Humanizer.Tests/DateHumanize.cs similarity index 100% rename from src/Humanizer.Tests.Shared/DateHumanize.cs rename to src/Humanizer.Tests/DateHumanize.cs diff --git a/src/Humanizer.Tests.Shared/DateHumanizeDefaultStrategyTests.cs b/src/Humanizer.Tests/DateHumanizeDefaultStrategyTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/DateHumanizeDefaultStrategyTests.cs rename to src/Humanizer.Tests/DateHumanizeDefaultStrategyTests.cs diff --git a/src/Humanizer.Tests.Shared/DateOnlyHumanizeTests.cs b/src/Humanizer.Tests/DateOnlyHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/DateOnlyHumanizeTests.cs rename to src/Humanizer.Tests/DateOnlyHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/DateTimeHumanizePrecisionStrategyTests.cs b/src/Humanizer.Tests/DateTimeHumanizePrecisionStrategyTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/DateTimeHumanizePrecisionStrategyTests.cs rename to src/Humanizer.Tests/DateTimeHumanizePrecisionStrategyTests.cs diff --git a/src/Humanizer.Tests.Shared/DateTimeOffsetHumanizeTests.cs b/src/Humanizer.Tests/DateTimeOffsetHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/DateTimeOffsetHumanizeTests.cs rename to src/Humanizer.Tests/DateTimeOffsetHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/EnumHumanizeTests.cs b/src/Humanizer.Tests/EnumHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/EnumHumanizeTests.cs rename to src/Humanizer.Tests/EnumHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/EnumUnderTest.cs b/src/Humanizer.Tests/EnumUnderTest.cs similarity index 100% rename from src/Humanizer.Tests.Shared/EnumUnderTest.cs rename to src/Humanizer.Tests/EnumUnderTest.cs diff --git a/src/Humanizer.Tests.Shared/FluentDate/InDateTests.cs b/src/Humanizer.Tests/FluentDate/InDateTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/FluentDate/InDateTests.cs rename to src/Humanizer.Tests/FluentDate/InDateTests.cs diff --git a/src/Humanizer.Tests.Shared/FluentDate/InTests.cs b/src/Humanizer.Tests/FluentDate/InTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/FluentDate/InTests.cs rename to src/Humanizer.Tests/FluentDate/InTests.cs diff --git a/src/Humanizer.Tests.Shared/FluentDate/OnDateTests.cs b/src/Humanizer.Tests/FluentDate/OnDateTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/FluentDate/OnDateTests.cs rename to src/Humanizer.Tests/FluentDate/OnDateTests.cs diff --git a/src/Humanizer.Tests.Shared/FluentDate/OnTests.cs b/src/Humanizer.Tests/FluentDate/OnTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/FluentDate/OnTests.cs rename to src/Humanizer.Tests/FluentDate/OnTests.cs diff --git a/src/Humanizer.Tests.Shared/FluentDate/PrepositionTests.cs b/src/Humanizer.Tests/FluentDate/PrepositionTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/FluentDate/PrepositionTests.cs rename to src/Humanizer.Tests/FluentDate/PrepositionTests.cs diff --git a/src/Humanizer.Tests.Shared/HeadingTests.cs b/src/Humanizer.Tests/HeadingTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/HeadingTests.cs rename to src/Humanizer.Tests/HeadingTests.cs diff --git a/src/Humanizer.Tests/Humanizer.Tests.csproj b/src/Humanizer.Tests/Humanizer.Tests.csproj index e86c7d54c..4a39c8d74 100644 --- a/src/Humanizer.Tests/Humanizer.Tests.csproj +++ b/src/Humanizer.Tests/Humanizer.Tests.csproj @@ -13,11 +13,6 @@ - - - %(RecursiveDir)%(Filename)%(Extension) - - PreserveNewest diff --git a/src/Humanizer.Tests.Shared/InflectorTests.cs b/src/Humanizer.Tests/InflectorTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/InflectorTests.cs rename to src/Humanizer.Tests/InflectorTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/DefaultFormatterTests.cs b/src/Humanizer.Tests/Localisation/DefaultFormatterTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/DefaultFormatterTests.cs rename to src/Humanizer.Tests/Localisation/DefaultFormatterTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ResourcesTests.cs b/src/Humanizer.Tests/Localisation/ResourcesTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ResourcesTests.cs rename to src/Humanizer.Tests/Localisation/ResourcesTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/af/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/af/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/af/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/af/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/af/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/af/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/af/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/af/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/af/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/af/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/af/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/af/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ar/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/ar/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ar/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/ar/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ar/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/ar/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ar/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/ar/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ar/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/ar/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ar/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/ar/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/az/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/az/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/az/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/az/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/az/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/az/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/az/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/az/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/az/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/az/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/az/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/az/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/bg/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/bg/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/bg/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/bg/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/bg/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/bg/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/bg/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/bg/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/bg/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/bg/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/bg/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/bg/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/bn-BD/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/bn-BD/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/bn-BD/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/bn-BD/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/bn-BD/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/bn-BD/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/bn-BD/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/bn-BD/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/bn-BD/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/bn-BD/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/bn-BD/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/bn-BD/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/cs/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/cs/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/cs/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/cs/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/cs/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/cs/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/cs/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/cs/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/cs/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/cs/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/cs/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/cs/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/da/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/da/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/da/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/da/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/da/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/da/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/da/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/da/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/de-CH/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/de-CH/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/de-CH/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/de-CH/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/de-LI/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/de-LI/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/de-LI/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/de-LI/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/de/Bytes/ByteRateTests.cs b/src/Humanizer.Tests/Localisation/de/Bytes/ByteRateTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/de/Bytes/ByteRateTests.cs rename to src/Humanizer.Tests/Localisation/de/Bytes/ByteRateTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/de/Bytes/ByteSizeExtensionsTests.cs b/src/Humanizer.Tests/Localisation/de/Bytes/ByteSizeExtensionsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/de/Bytes/ByteSizeExtensionsTests.cs rename to src/Humanizer.Tests/Localisation/de/Bytes/ByteSizeExtensionsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/de/Bytes/ToFullWordsTests.cs b/src/Humanizer.Tests/Localisation/de/Bytes/ToFullWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/de/Bytes/ToFullWordsTests.cs rename to src/Humanizer.Tests/Localisation/de/Bytes/ToFullWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/de/Bytes/ToStringTests.cs b/src/Humanizer.Tests/Localisation/de/Bytes/ToStringTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/de/Bytes/ToStringTests.cs rename to src/Humanizer.Tests/Localisation/de/Bytes/ToStringTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/de/CollectionFormatterTests.cs b/src/Humanizer.Tests/Localisation/de/CollectionFormatterTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/de/CollectionFormatterTests.cs rename to src/Humanizer.Tests/Localisation/de/CollectionFormatterTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/de/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/de/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/de/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/de/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/de/DateToOrdinalWordsTests.cs b/src/Humanizer.Tests/Localisation/de/DateToOrdinalWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/de/DateToOrdinalWordsTests.cs rename to src/Humanizer.Tests/Localisation/de/DateToOrdinalWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/de/HeadingTests.cs b/src/Humanizer.Tests/Localisation/de/HeadingTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/de/HeadingTests.cs rename to src/Humanizer.Tests/Localisation/de/HeadingTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/de/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/de/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/de/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/de/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/de/OrdinalizeTests.cs b/src/Humanizer.Tests/Localisation/de/OrdinalizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/de/OrdinalizeTests.cs rename to src/Humanizer.Tests/Localisation/de/OrdinalizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/de/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/de/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/de/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/de/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/de/TimeUnitToSymbolTests.cs b/src/Humanizer.Tests/Localisation/de/TimeUnitToSymbolTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/de/TimeUnitToSymbolTests.cs rename to src/Humanizer.Tests/Localisation/de/TimeUnitToSymbolTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/el/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/el/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/el/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/el/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/el/NumberToOrdinalWordsTests.cs b/src/Humanizer.Tests/Localisation/el/NumberToOrdinalWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/el/NumberToOrdinalWordsTests.cs rename to src/Humanizer.Tests/Localisation/el/NumberToOrdinalWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/el/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/el/NumberToWordsTests.cs similarity index 98% rename from src/Humanizer.Tests.Shared/Localisation/el/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/el/NumberToWordsTests.cs index e7ddc0e70..47c559e68 100644 --- a/src/Humanizer.Tests.Shared/Localisation/el/NumberToWordsTests.cs +++ b/src/Humanizer.Tests/Localisation/el/NumberToWordsTests.cs @@ -1,32 +1,32 @@ -namespace Humanizer.Tests.Localisation.el -{ - [UseCulture("el")] - public class NumberToWordsTests - { - [InlineData(1, "ένα")] - [InlineData(10, "δέκα")] - [InlineData(11, "έντεκα")] - [InlineData(14, "δεκατέσσερα")] - [InlineData(20, "είκοσι")] - [InlineData(122, "εκατόν είκοσι δύο")] - [InlineData(3501, "τρείς χιλιάδες πεντακόσια ένα")] - [InlineData(100, "εκατό")] - [InlineData(1000, "χίλια")] - [InlineData(100000, "εκατό χιλιάδες")] - [InlineData(13448, "δεκατρείς χιλιάδες τετρακόσια σαράντα οκτώ")] - [InlineData(53, "πενήντα τρία")] - [InlineData(123647, "εκατόν είκοσι τρείς χιλιάδες εξακόσια σαράντα επτά")] - [InlineData(14000000, "δεκατέσσερα εκατομμύρια")] - [InlineData(578412, "πεντακόσιες εβδομήντα οκτώ χιλιάδες τετρακόσια δώδεκα")] - [InlineData(1000000000, "ένα δισεκατομμύριο")] - [InlineData(1000000001, "ένα δισεκατομμύριο ένα")] - [InlineData(1469, "χίλια τετρακόσια εξήντα εννέα")] - [InlineData(69, "εξήντα εννέα")] - [InlineData(619, "εξακόσια δεκαεννέα")] - [InlineData(1190, "χίλια εκατόν ενενήντα")] - - [Theory] - public void ToWordsInt(int number, string expected) => - Assert.Equal(expected, number.ToWords()); - } -} +namespace Humanizer.Tests.Localisation.el +{ + [UseCulture("el")] + public class NumberToWordsTests + { + [InlineData(1, "ένα")] + [InlineData(10, "δέκα")] + [InlineData(11, "έντεκα")] + [InlineData(14, "δεκατέσσερα")] + [InlineData(20, "είκοσι")] + [InlineData(122, "εκατόν είκοσι δύο")] + [InlineData(3501, "τρείς χιλιάδες πεντακόσια ένα")] + [InlineData(100, "εκατό")] + [InlineData(1000, "χίλια")] + [InlineData(100000, "εκατό χιλιάδες")] + [InlineData(13448, "δεκατρείς χιλιάδες τετρακόσια σαράντα οκτώ")] + [InlineData(53, "πενήντα τρία")] + [InlineData(123647, "εκατόν είκοσι τρείς χιλιάδες εξακόσια σαράντα επτά")] + [InlineData(14000000, "δεκατέσσερα εκατομμύρια")] + [InlineData(578412, "πεντακόσιες εβδομήντα οκτώ χιλιάδες τετρακόσια δώδεκα")] + [InlineData(1000000000, "ένα δισεκατομμύριο")] + [InlineData(1000000001, "ένα δισεκατομμύριο ένα")] + [InlineData(1469, "χίλια τετρακόσια εξήντα εννέα")] + [InlineData(69, "εξήντα εννέα")] + [InlineData(619, "εξακόσια δεκαεννέα")] + [InlineData(1190, "χίλια εκατόν ενενήντα")] + + [Theory] + public void ToWordsInt(int number, string expected) => + Assert.Equal(expected, number.ToWords()); + } +} diff --git a/src/Humanizer.Tests.Shared/Localisation/el/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/el/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/el/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/el/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/en-IN/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/en-IN/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/en-IN/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/en-IN/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/en/DateToOrdinalWordsTests.cs b/src/Humanizer.Tests/Localisation/en/DateToOrdinalWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/en/DateToOrdinalWordsTests.cs rename to src/Humanizer.Tests/Localisation/en/DateToOrdinalWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/en/TimeToClockNotationTests.cs b/src/Humanizer.Tests/Localisation/en/TimeToClockNotationTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/en/TimeToClockNotationTests.cs rename to src/Humanizer.Tests/Localisation/en/TimeToClockNotationTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/es/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/es/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/es/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/es/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/es/DateToOrdinalWordsTests.cs b/src/Humanizer.Tests/Localisation/es/DateToOrdinalWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/es/DateToOrdinalWordsTests.cs rename to src/Humanizer.Tests/Localisation/es/DateToOrdinalWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/es/NumberToWordsFeminineTest.cs b/src/Humanizer.Tests/Localisation/es/NumberToWordsFeminineTest.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/es/NumberToWordsFeminineTest.cs rename to src/Humanizer.Tests/Localisation/es/NumberToWordsFeminineTest.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/es/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/es/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/es/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/es/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/es/OrdinalizeTests.cs b/src/Humanizer.Tests/Localisation/es/OrdinalizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/es/OrdinalizeTests.cs rename to src/Humanizer.Tests/Localisation/es/OrdinalizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/es/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/es/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/es/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/es/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/es/TimeToClockNotationTests.cs b/src/Humanizer.Tests/Localisation/es/TimeToClockNotationTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/es/TimeToClockNotationTests.cs rename to src/Humanizer.Tests/Localisation/es/TimeToClockNotationTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/fa/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/fa/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/fa/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/fa/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/fa/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/fa/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/fa/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/fa/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/fa/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/fa/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/fa/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/fa/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/fi-FI/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/fi-FI/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/fi-FI/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/fi-FI/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/fi-FI/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/fi-FI/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/fi-FI/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/fi-FI/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/fil-PH/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/fil-PH/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/fil-PH/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/fil-PH/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/fr-BE/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/fr-BE/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/fr-BE/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/fr-BE/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/fr-BE/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/fr-BE/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/fr-BE/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/fr-BE/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/fr-BE/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/fr-BE/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/fr-BE/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/fr-BE/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/fr-CH/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/fr-CH/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/fr-CH/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/fr-CH/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/fr/Bytes/ByteSizeExtensionsTests.cs b/src/Humanizer.Tests/Localisation/fr/Bytes/ByteSizeExtensionsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/fr/Bytes/ByteSizeExtensionsTests.cs rename to src/Humanizer.Tests/Localisation/fr/Bytes/ByteSizeExtensionsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/fr/Bytes/ToFullWordsTests.cs b/src/Humanizer.Tests/Localisation/fr/Bytes/ToFullWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/fr/Bytes/ToFullWordsTests.cs rename to src/Humanizer.Tests/Localisation/fr/Bytes/ToFullWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/fr/Bytes/ToStringTests.cs b/src/Humanizer.Tests/Localisation/fr/Bytes/ToStringTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/fr/Bytes/ToStringTests.cs rename to src/Humanizer.Tests/Localisation/fr/Bytes/ToStringTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/fr/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/fr/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/fr/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/fr/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/fr/DateToOrdinalWordsTests.cs b/src/Humanizer.Tests/Localisation/fr/DateToOrdinalWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/fr/DateToOrdinalWordsTests.cs rename to src/Humanizer.Tests/Localisation/fr/DateToOrdinalWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/fr/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/fr/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/fr/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/fr/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/fr/OrdinalizeTests.cs b/src/Humanizer.Tests/Localisation/fr/OrdinalizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/fr/OrdinalizeTests.cs rename to src/Humanizer.Tests/Localisation/fr/OrdinalizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/fr/TimeOnlyHumanizeTests.cs b/src/Humanizer.Tests/Localisation/fr/TimeOnlyHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/fr/TimeOnlyHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/fr/TimeOnlyHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/fr/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/fr/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/fr/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/fr/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/fr/TimeToClockNotationTests.cs b/src/Humanizer.Tests/Localisation/fr/TimeToClockNotationTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/fr/TimeToClockNotationTests.cs rename to src/Humanizer.Tests/Localisation/fr/TimeToClockNotationTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/fr/TimeUnitToSymbolTests.cs b/src/Humanizer.Tests/Localisation/fr/TimeUnitToSymbolTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/fr/TimeUnitToSymbolTests.cs rename to src/Humanizer.Tests/Localisation/fr/TimeUnitToSymbolTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/he/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/he/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/he/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/he/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/he/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/he/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/he/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/he/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/he/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/he/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/he/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/he/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/hr/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/hr/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/hr/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/hr/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/hr/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/hr/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/hr/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/hr/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/hr/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/hr/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/hr/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/hr/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/hu/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/hu/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/hu/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/hu/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/hu/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/hu/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/hu/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/hu/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/hy/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/hy/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/hy/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/hy/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/hy/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/hy/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/hy/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/hy/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/hy/OrdinalizeTests.cs b/src/Humanizer.Tests/Localisation/hy/OrdinalizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/hy/OrdinalizeTests.cs rename to src/Humanizer.Tests/Localisation/hy/OrdinalizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/hy/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/hy/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/hy/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/hy/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/id/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/id/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/id/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/id/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/id/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/id/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/id/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/id/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/invariant/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/invariant/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/invariant/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/invariant/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/invariant/ToQuantityTests.cs b/src/Humanizer.Tests/Localisation/invariant/ToQuantityTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/invariant/ToQuantityTests.cs rename to src/Humanizer.Tests/Localisation/invariant/ToQuantityTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/is/Bytes/ByteSizeExtensionsTests.cs b/src/Humanizer.Tests/Localisation/is/Bytes/ByteSizeExtensionsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/is/Bytes/ByteSizeExtensionsTests.cs rename to src/Humanizer.Tests/Localisation/is/Bytes/ByteSizeExtensionsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/is/Bytes/ToFullWordsTests.cs b/src/Humanizer.Tests/Localisation/is/Bytes/ToFullWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/is/Bytes/ToFullWordsTests.cs rename to src/Humanizer.Tests/Localisation/is/Bytes/ToFullWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/is/Bytes/ToStringTests.cs b/src/Humanizer.Tests/Localisation/is/Bytes/ToStringTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/is/Bytes/ToStringTests.cs rename to src/Humanizer.Tests/Localisation/is/Bytes/ToStringTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/is/CollectionFormatterTests.cs b/src/Humanizer.Tests/Localisation/is/CollectionFormatterTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/is/CollectionFormatterTests.cs rename to src/Humanizer.Tests/Localisation/is/CollectionFormatterTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/is/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/is/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/is/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/is/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/is/HeadingTests.cs b/src/Humanizer.Tests/Localisation/is/HeadingTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/is/HeadingTests.cs rename to src/Humanizer.Tests/Localisation/is/HeadingTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/is/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/is/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/is/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/is/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/is/OrdinalizeTests.cs b/src/Humanizer.Tests/Localisation/is/OrdinalizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/is/OrdinalizeTests.cs rename to src/Humanizer.Tests/Localisation/is/OrdinalizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/is/ResourcesTests.cs b/src/Humanizer.Tests/Localisation/is/ResourcesTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/is/ResourcesTests.cs rename to src/Humanizer.Tests/Localisation/is/ResourcesTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/is/TimeOnlyHumanizeTests.cs b/src/Humanizer.Tests/Localisation/is/TimeOnlyHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/is/TimeOnlyHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/is/TimeOnlyHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/is/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/is/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/is/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/is/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/it/CollectionFormatterTests.cs b/src/Humanizer.Tests/Localisation/it/CollectionFormatterTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/it/CollectionFormatterTests.cs rename to src/Humanizer.Tests/Localisation/it/CollectionFormatterTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/it/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/it/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/it/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/it/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/it/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/it/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/it/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/it/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/it/OrdinalizerTests.cs b/src/Humanizer.Tests/Localisation/it/OrdinalizerTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/it/OrdinalizerTests.cs rename to src/Humanizer.Tests/Localisation/it/OrdinalizerTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/it/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/it/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/it/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/it/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ja/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/ja/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ja/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/ja/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ja/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/ja/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ja/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/ja/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ja/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/ja/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ja/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/ja/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ko-KR/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/ko-KR/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ko-KR/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/ko-KR/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ko-KR/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/ko-KR/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ko-KR/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/ko-KR/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ku/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/ku/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ku/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/ku/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ku/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/ku/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ku/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/ku/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ku/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/ku/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ku/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/ku/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/lb/Bytes/ByteRateTests.cs b/src/Humanizer.Tests/Localisation/lb/Bytes/ByteRateTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/lb/Bytes/ByteRateTests.cs rename to src/Humanizer.Tests/Localisation/lb/Bytes/ByteRateTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/lb/Bytes/ByteSizeExtensionsTests.cs b/src/Humanizer.Tests/Localisation/lb/Bytes/ByteSizeExtensionsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/lb/Bytes/ByteSizeExtensionsTests.cs rename to src/Humanizer.Tests/Localisation/lb/Bytes/ByteSizeExtensionsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/lb/Bytes/ToFullWordsTests.cs b/src/Humanizer.Tests/Localisation/lb/Bytes/ToFullWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/lb/Bytes/ToFullWordsTests.cs rename to src/Humanizer.Tests/Localisation/lb/Bytes/ToFullWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/lb/Bytes/ToStringTests.cs b/src/Humanizer.Tests/Localisation/lb/Bytes/ToStringTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/lb/Bytes/ToStringTests.cs rename to src/Humanizer.Tests/Localisation/lb/Bytes/ToStringTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/lb/CollectionFormatterTests.cs b/src/Humanizer.Tests/Localisation/lb/CollectionFormatterTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/lb/CollectionFormatterTests.cs rename to src/Humanizer.Tests/Localisation/lb/CollectionFormatterTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/lb/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/lb/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/lb/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/lb/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/lb/DateToOrdinalWordsTests.cs b/src/Humanizer.Tests/Localisation/lb/DateToOrdinalWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/lb/DateToOrdinalWordsTests.cs rename to src/Humanizer.Tests/Localisation/lb/DateToOrdinalWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/lb/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/lb/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/lb/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/lb/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/lb/OrdinalizeTests.cs b/src/Humanizer.Tests/Localisation/lb/OrdinalizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/lb/OrdinalizeTests.cs rename to src/Humanizer.Tests/Localisation/lb/OrdinalizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/lb/TimeOnlyHumanizeTests.cs b/src/Humanizer.Tests/Localisation/lb/TimeOnlyHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/lb/TimeOnlyHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/lb/TimeOnlyHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/lb/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/lb/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/lb/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/lb/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/lb/TimeToClockNotationTests.cs b/src/Humanizer.Tests/Localisation/lb/TimeToClockNotationTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/lb/TimeToClockNotationTests.cs rename to src/Humanizer.Tests/Localisation/lb/TimeToClockNotationTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/lt/DateToOrdinalWordsTests.cs b/src/Humanizer.Tests/Localisation/lt/DateToOrdinalWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/lt/DateToOrdinalWordsTests.cs rename to src/Humanizer.Tests/Localisation/lt/DateToOrdinalWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/lt/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/lt/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/lt/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/lt/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/lt/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/lt/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/lt/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/lt/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/lv/DateToOrdinalWordsTests.cs b/src/Humanizer.Tests/Localisation/lv/DateToOrdinalWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/lv/DateToOrdinalWordsTests.cs rename to src/Humanizer.Tests/Localisation/lv/DateToOrdinalWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/lv/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/lv/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/lv/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/lv/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/lv/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/lv/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/lv/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/lv/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ms-MY/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/ms-MY/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ms-MY/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/ms-MY/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/mt/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/mt/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/mt/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/mt/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/mt/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/mt/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/mt/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/mt/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/mt/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/mt/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/mt/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/mt/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/nb-NO/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/nb-NO/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/nb-NO/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/nb-NO/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/nb-NO/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/nb-NO/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/nb-NO/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/nb-NO/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/nb/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/nb/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/nb/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/nb/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/nb/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/nb/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/nb/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/nb/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/nb/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/nb/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/nb/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/nb/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/nl/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/nl/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/nl/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/nl/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/nl/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/nl/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/nl/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/nl/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/nl/OrdinalizeTests.cs b/src/Humanizer.Tests/Localisation/nl/OrdinalizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/nl/OrdinalizeTests.cs rename to src/Humanizer.Tests/Localisation/nl/OrdinalizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/nl/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/nl/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/nl/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/nl/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/pl/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/pl/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/pl/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/pl/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/pl/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/pl/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/pl/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/pl/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/pl/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/pl/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/pl/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/pl/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/pt-BR/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/pt-BR/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/pt-BR/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/pt-BR/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/pt-BR/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/pt-BR/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/pt-BR/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/pt-BR/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/pt-BR/OrdinalizeTests.cs b/src/Humanizer.Tests/Localisation/pt-BR/OrdinalizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/pt-BR/OrdinalizeTests.cs rename to src/Humanizer.Tests/Localisation/pt-BR/OrdinalizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/pt-BR/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/pt-BR/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/pt-BR/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/pt-BR/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/pt-BR/TimeToClockNotationTests.cs b/src/Humanizer.Tests/Localisation/pt-BR/TimeToClockNotationTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/pt-BR/TimeToClockNotationTests.cs rename to src/Humanizer.Tests/Localisation/pt-BR/TimeToClockNotationTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/pt/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/pt/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/pt/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/pt/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/pt/OrdinalizeTests.cs b/src/Humanizer.Tests/Localisation/pt/OrdinalizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/pt/OrdinalizeTests.cs rename to src/Humanizer.Tests/Localisation/pt/OrdinalizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/pt/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/pt/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/pt/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/pt/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ro-Ro/CollectionFormatterTests.cs b/src/Humanizer.Tests/Localisation/ro-Ro/CollectionFormatterTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ro-Ro/CollectionFormatterTests.cs rename to src/Humanizer.Tests/Localisation/ro-Ro/CollectionFormatterTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ro-Ro/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/ro-Ro/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ro-Ro/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/ro-Ro/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ro-Ro/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/ro-Ro/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ro-Ro/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/ro-Ro/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ro-Ro/OrdinalizerTests.cs b/src/Humanizer.Tests/Localisation/ro-Ro/OrdinalizerTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ro-Ro/OrdinalizerTests.cs rename to src/Humanizer.Tests/Localisation/ro-Ro/OrdinalizerTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ro-Ro/TimeSpanHumanizerTests.cs b/src/Humanizer.Tests/Localisation/ro-Ro/TimeSpanHumanizerTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ro-Ro/TimeSpanHumanizerTests.cs rename to src/Humanizer.Tests/Localisation/ro-Ro/TimeSpanHumanizerTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ru-RU/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/ru-RU/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ru-RU/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/ru-RU/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ru-RU/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/ru-RU/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ru-RU/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/ru-RU/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ru-RU/OrdinalizeTests.cs b/src/Humanizer.Tests/Localisation/ru-RU/OrdinalizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ru-RU/OrdinalizeTests.cs rename to src/Humanizer.Tests/Localisation/ru-RU/OrdinalizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ru-RU/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/ru-RU/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ru-RU/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/ru-RU/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/sk/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/sk/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/sk/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/sk/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/sk/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/sk/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/sk/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/sk/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/sl/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/sl/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/sl/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/sl/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/sl/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/sl/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/sl/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/sl/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/sl/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/sl/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/sl/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/sl/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/sr-Latn/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/sr-Latn/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/sr-Latn/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/sr-Latn/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/sr-Latn/NumberToWordsTest.cs b/src/Humanizer.Tests/Localisation/sr-Latn/NumberToWordsTest.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/sr-Latn/NumberToWordsTest.cs rename to src/Humanizer.Tests/Localisation/sr-Latn/NumberToWordsTest.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/sr-Latn/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/sr-Latn/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/sr-Latn/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/sr-Latn/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/sr/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/sr/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/sr/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/sr/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/sr/NumberToWordsTest.cs b/src/Humanizer.Tests/Localisation/sr/NumberToWordsTest.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/sr/NumberToWordsTest.cs rename to src/Humanizer.Tests/Localisation/sr/NumberToWordsTest.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/sr/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/sr/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/sr/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/sr/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/sv/CollectionFormatterTests.cs b/src/Humanizer.Tests/Localisation/sv/CollectionFormatterTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/sv/CollectionFormatterTests.cs rename to src/Humanizer.Tests/Localisation/sv/CollectionFormatterTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/sv/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/sv/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/sv/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/sv/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/sv/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/sv/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/sv/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/sv/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/sv/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/sv/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/sv/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/sv/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/ta/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/ta/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/ta/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/ta/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/th-TH/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/th-TH/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/th-TH/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/th-TH/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/th-TH/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/th-TH/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/th-TH/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/th-TH/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/tr/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/tr/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/tr/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/tr/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/tr/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/tr/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/tr/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/tr/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/tr/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/tr/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/tr/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/tr/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/uk-UA/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/uk-UA/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/uk-UA/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/uk-UA/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/uk-UA/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/uk-UA/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/uk-UA/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/uk-UA/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/uk-UA/OrdinalizeTests.cs b/src/Humanizer.Tests/Localisation/uk-UA/OrdinalizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/uk-UA/OrdinalizeTests.cs rename to src/Humanizer.Tests/Localisation/uk-UA/OrdinalizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/uk-UA/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/uk-UA/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/uk-UA/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/uk-UA/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/uz-Cyrl-UZ/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/uz-Cyrl-UZ/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/uz-Cyrl-UZ/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/uz-Cyrl-UZ/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/uz-Cyrl-UZ/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/uz-Cyrl-UZ/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/uz-Cyrl-UZ/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/uz-Cyrl-UZ/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/uz-Cyrl-UZ/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/uz-Cyrl-UZ/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/uz-Cyrl-UZ/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/uz-Cyrl-UZ/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/uz-Latn-UZ/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/uz-Latn-UZ/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/uz-Latn-UZ/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/uz-Latn-UZ/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/uz-Latn-UZ/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/uz-Latn-UZ/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/uz-Latn-UZ/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/uz-Latn-UZ/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/uz-Latn-UZ/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/uz-Latn-UZ/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/uz-Latn-UZ/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/uz-Latn-UZ/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/vi/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/vi/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/vi/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/vi/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/vi/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/vi/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/vi/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/vi/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/vi/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/vi/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/vi/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/vi/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/zh-CN/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/zh-CN/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/zh-CN/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/zh-CN/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/zh-CN/NumberToWordsTests.cs b/src/Humanizer.Tests/Localisation/zh-CN/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/zh-CN/NumberToWordsTests.cs rename to src/Humanizer.Tests/Localisation/zh-CN/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/zh-CN/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/zh-CN/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/zh-CN/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/zh-CN/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/zh-HK/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/zh-HK/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/zh-HK/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/zh-HK/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/zh-HK/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/zh-HK/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/zh-HK/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/zh-HK/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/zh-Hans/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/zh-Hans/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/zh-Hans/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/zh-Hans/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/zh-Hans/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/zh-Hans/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/zh-Hans/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/zh-Hans/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/zh-Hant/DateHumanizeTests.cs b/src/Humanizer.Tests/Localisation/zh-Hant/DateHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/zh-Hant/DateHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/zh-Hant/DateHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/Localisation/zh-Hant/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/Localisation/zh-Hant/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/Localisation/zh-Hant/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/Localisation/zh-Hant/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/MetricNumeralTests.cs b/src/Humanizer.Tests/MetricNumeralTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/MetricNumeralTests.cs rename to src/Humanizer.Tests/MetricNumeralTests.cs diff --git a/src/Humanizer.Tests.Shared/NumberToNumberTests.cs b/src/Humanizer.Tests/NumberToNumberTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/NumberToNumberTests.cs rename to src/Humanizer.Tests/NumberToNumberTests.cs diff --git a/src/Humanizer.Tests.Shared/NumberToTimeSpanTests.cs b/src/Humanizer.Tests/NumberToTimeSpanTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/NumberToTimeSpanTests.cs rename to src/Humanizer.Tests/NumberToTimeSpanTests.cs diff --git a/src/Humanizer.Tests.Shared/NumberToWordsTests.cs b/src/Humanizer.Tests/NumberToWordsTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/NumberToWordsTests.cs rename to src/Humanizer.Tests/NumberToWordsTests.cs diff --git a/src/Humanizer.Tests.Shared/OrdinalizeTests.cs b/src/Humanizer.Tests/OrdinalizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/OrdinalizeTests.cs rename to src/Humanizer.Tests/OrdinalizeTests.cs diff --git a/src/Humanizer.Tests.Shared/ResourceKeyTests.cs b/src/Humanizer.Tests/ResourceKeyTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/ResourceKeyTests.cs rename to src/Humanizer.Tests/ResourceKeyTests.cs diff --git a/src/Humanizer.Tests.Shared/RomanNumeralTests.cs b/src/Humanizer.Tests/RomanNumeralTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/RomanNumeralTests.cs rename to src/Humanizer.Tests/RomanNumeralTests.cs diff --git a/src/Humanizer.Tests.Shared/StringDehumanizeTests.cs b/src/Humanizer.Tests/StringDehumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/StringDehumanizeTests.cs rename to src/Humanizer.Tests/StringDehumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/StringHumanizeTests.cs b/src/Humanizer.Tests/StringHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/StringHumanizeTests.cs rename to src/Humanizer.Tests/StringHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/TimeOnlyHumanizeTests.cs b/src/Humanizer.Tests/TimeOnlyHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/TimeOnlyHumanizeTests.cs rename to src/Humanizer.Tests/TimeOnlyHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/TimeSpanHumanizeTests.cs b/src/Humanizer.Tests/TimeSpanHumanizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/TimeSpanHumanizeTests.cs rename to src/Humanizer.Tests/TimeSpanHumanizeTests.cs diff --git a/src/Humanizer.Tests.Shared/TimeUnitToSymbolTests.cs b/src/Humanizer.Tests/TimeUnitToSymbolTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/TimeUnitToSymbolTests.cs rename to src/Humanizer.Tests/TimeUnitToSymbolTests.cs diff --git a/src/Humanizer.Tests.Shared/ToQuantityTests.cs b/src/Humanizer.Tests/ToQuantityTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/ToQuantityTests.cs rename to src/Humanizer.Tests/ToQuantityTests.cs diff --git a/src/Humanizer.Tests.Shared/TransformersTests.cs b/src/Humanizer.Tests/TransformersTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/TransformersTests.cs rename to src/Humanizer.Tests/TransformersTests.cs diff --git a/src/Humanizer.Tests.Shared/TruncatorTests.cs b/src/Humanizer.Tests/TruncatorTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/TruncatorTests.cs rename to src/Humanizer.Tests/TruncatorTests.cs diff --git a/src/Humanizer.Tests.Shared/TupleizeTests.cs b/src/Humanizer.Tests/TupleizeTests.cs similarity index 100% rename from src/Humanizer.Tests.Shared/TupleizeTests.cs rename to src/Humanizer.Tests/TupleizeTests.cs diff --git a/src/Humanizer.Tests.Shared/UseCultureAttribute.cs b/src/Humanizer.Tests/UseCultureAttribute.cs similarity index 100% rename from src/Humanizer.Tests.Shared/UseCultureAttribute.cs rename to src/Humanizer.Tests/UseCultureAttribute.cs diff --git a/src/Humanizer.sln b/src/Humanizer.sln index e1ac9832f..be4cd5e12 100644 --- a/src/Humanizer.sln +++ b/src/Humanizer.sln @@ -28,12 +28,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{97AAE24D Humanizer.ruleset = Humanizer.ruleset EndProjectSection EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Samples", "Samples", "{1ABFDC1F-EAB0-48E1-B27E-388619899018}" -EndProject -Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Humanizer.Tests.Shared", "Humanizer.Tests.Shared\Humanizer.Tests.Shared.shproj", "{FDEC244B-F07E-4A5E-BB80-FBC6AC77A9AA}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{04B74BEC-A645-4D1A-BE21-F4EB4413A903}" -EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "NuSpecs", "NuSpecs", "{AA449265-E001-486D-A0F4-04ACF0C83DC1}" ProjectSection(SolutionItems) = preProject ..\NuSpecs\Humanizer.Core.af.nuspec = ..\NuSpecs\Humanizer.Core.af.nuspec @@ -91,9 +85,6 @@ EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Benchmarks", "Benchmarks\Benchmarks.csproj", "{6ACDB92B-AC86-4C59-9114-5DCF9543D945}" EndProject Global - GlobalSection(SharedMSBuildProjectFiles) = preSolution - Humanizer.Tests.Shared\Humanizer.Tests.Shared.projitems*{fdec244b-f07e-4a5e-bb80-fbc6ac77a9aa}*SharedItemsImports = 13 - EndGlobalSection GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU Debug|ARM = Debug|ARM @@ -158,9 +149,7 @@ Global HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution - {F886A8DA-3EFC-4A89-91DD-06FAF13DA172} = {04B74BEC-A645-4D1A-BE21-F4EB4413A903} {97AAE24D-0488-42AE-A585-86D882F23D5F} = {4779A7C9-9ED8-4146-A158-FBE0B1BE09D9} - {FDEC244B-F07E-4A5E-BB80-FBC6AC77A9AA} = {04B74BEC-A645-4D1A-BE21-F4EB4413A903} {AA449265-E001-486D-A0F4-04ACF0C83DC1} = {4779A7C9-9ED8-4146-A158-FBE0B1BE09D9} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution