public void ClearInput_TEST()
 {
     UnfixedBinInteger bin = new UnfixedBinInteger("");
     bin.ClearInput();
     Assert.AreEqual("0", bin.StoredInput);
     bin.StoredInput = "101";
     bin.ClearInput();
     Assert.AreEqual("0", bin.StoredInput);
 }