Files
Beam/Beam.Tests/OnlineCleaner.Tests.cs
qwsdcvghyu89 7ed05abdb8 refactor: modularize Beam into new projects and interfaces
- Introduced modularity by splitting Beam into new projects: Beam.Abstractions, Beam.Models, and Beam.Downloaders.
- Refactored existing classes into appropriate namespaces and projects.
- Replaced specific implementations with abstractions (e.g., SourceLinkBuilder to LinkBuilder, State to IState, etc.).
- Updated interfaces: added ITemplate, IArticleData, IDownloadReport, and others for improved extensibility.
- Removed deprecated classes like SourceLinkBuilder and StateChangerFactory.
- Enhanced link handling in downloaders by refactoring to use `string` over `SourceLink`.
- Consolidated shared logic under Beam.Abstractions.
2025-09-22 01:51:46 +10:00

35 lines
843 B
C#

using Beam.Dynamic;
using Microsoft.Recognizers.Text;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Beam.Tests {
public class StringCleanerTests {
[Fact]
public void Should_LocalizeArabic() {
const string test = "1234";
List<int> localized = StringCleaner.ParseNumbers(test, Culture.English);
Assert.Single(localized);
Assert.Equal(1234, localized[0]);
}
[Fact]
public void Should_LocalizeIndian() {
const string test = "九一五";
List<int> localized = StringCleaner.ParseNumbers(test, Culture.Chinese);
Assert.Single(localized);
Assert.Equal(915, localized[0]);
}
}
}