public void AddBinary_Solutions(string a, string b, string expected) { var solution = new Solution(); var result = solution.AddBinary(a, b); Assert.AreEqual(expected, result); }