private void Button_Click(object sender, RoutedEventArgs e) { //TestInfo.Text = "Running shark UT,please wait!..." ; SharkTestRTC vSharkTest = new SharkTestRTC(); int ret = vSharkTest.TestAllCases(); TestInfo.Text = "UT return value is:" + ret.ToString(); }
// Constructor public MainPage() { InitializeComponent(); SharkTestRTC vSharkTest = new SharkTestRTC(); int ret = vSharkTest.TestAllCases(); TestInfo.Text = "First launch, UT return value is:" + ret.ToString(); // Sample code to localize the ApplicationBar //BuildLocalizedApplicationBar(); }