public void TestDefaultConstructor()
        {
            AlreadyShookHandsException testException = new AlreadyShookHandsException();

            string testExceptionString = testException.ToString();

            Assert.IsNotNull(testExceptionString);
        }
    public void TestInnerException() {
      Exception inner = new Exception("This is a test");
      AlreadyShookHandsException testException = new AlreadyShookHandsException(
        "Hello World", inner
      );

      Assert.AreSame(inner, testException.InnerException);
    }
        public void TestInnerException()
        {
            Exception inner = new Exception("This is a test");
            AlreadyShookHandsException testException = new AlreadyShookHandsException(
                "Hello World", inner
                );

            Assert.AreSame(inner, testException.InnerException);
        }
    public void TestSerialization() {
      BinaryFormatter formatter = new BinaryFormatter();

      using(MemoryStream memory = new MemoryStream()) {
        AlreadyShookHandsException exception1 = new AlreadyShookHandsException(
          "Hello World"
        );

        formatter.Serialize(memory, exception1);
        memory.Position = 0;
        object exception2 = formatter.Deserialize(memory);

        Assert.IsInstanceOf<AlreadyShookHandsException>(exception2);
        Assert.AreEqual(
          exception1.Message, ((AlreadyShookHandsException)exception2).Message
        );
      }
    }
        public void TestSerialization()
        {
            BinaryFormatter formatter = new BinaryFormatter();

            using (MemoryStream memory = new MemoryStream()) {
                AlreadyShookHandsException exception1 = new AlreadyShookHandsException(
                    "Hello World"
                    );

                formatter.Serialize(memory, exception1);
                memory.Position = 0;
                object exception2 = formatter.Deserialize(memory);

                Assert.IsInstanceOf <AlreadyShookHandsException>(exception2);
                Assert.AreEqual(
                    exception1.Message, ((AlreadyShookHandsException)exception2).Message
                    );
            }
        }
    public void TestDefaultConstructor() {
      AlreadyShookHandsException testException = new AlreadyShookHandsException();

      string testExceptionString = testException.ToString();
      Assert.IsNotNull(testExceptionString);
    }