public MainPage()
 {
     sut = new VerySimplePOS();
     this.InitializeComponent();
     MoneyChangeResult.Text    = "";
     countThousand.Text        = "";
     countFiveHundred.Text     = "";
     countHundred.Text         = "";
     countFifty.Text           = "";
     countTwenty.Text          = "";
     countTen.Text             = "";
     countFive.Text            = "";
     countOne.Text             = "";
     countTwentyFiveStang.Text = "";
     countFiftyStang.Text      = "";
     StatusChange.Text         = "";
 }
 public VerySimplePosTests()
 {
     // TODO: instantiate SUT with your implementation of IVerySimplePOS.
     sut = new POS();
 }
Beispiel #3
0
 public VerySimplePosTests()
 {
     sut = new VerySimplePOS();
 }