ExpectationOfIO.cs 666 B

12345678910111213141516171819202122232425262728
  1. // -----------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. // -----------------------------------------------------------------------
  4. using System;
  5. namespace System.UnitTesting
  6. {
  7. public class Expectation<TInput, TOutput>
  8. {
  9. public Expectation(TInput input, TOutput output)
  10. {
  11. Input = input;
  12. Output = output;
  13. }
  14. public TInput Input
  15. {
  16. get;
  17. private set;
  18. }
  19. public TOutput Output
  20. {
  21. get;
  22. private set;
  23. }
  24. }
  25. }