using System.Collections.Generic;
public class StringAnalyzer
public static Dictionary<char, int> CountCharacterOccurrences(string input)
public void Test_CountCharacterOccurrences_WithValidInput()
public void Test_CountCharacterOccurrences_WithShortInput()
public void Test_CountCharacterOccurrences_WithNullInput()
Test_CountCharacterOccurrences_WithValidInput();
Test_CountCharacterOccurrences_WithShortInput();
Test_CountCharacterOccurrences_WithNullInput();
public static void Main()
StringAnalyzer analyzer = new StringAnalyzer();