コード例 #1
0
ファイル: IssueMovieTest.cs プロジェクト: tmandersson/FastGTD
 public void IssueMovie_AnotherTry()
 {
     DashboardScreen dashboardScreen = new DashboardScreen(window, application);
     Customer customer = new Customer("Rakesh Kumar", "26", "34343545");
     CreateCustomerStep1Screen step1Screen = dashboardScreen.LaunchCreateCustomer();
     step1Screen.FillAndNext(customer);
 }
 public void CreateCustomerWithoutEntities()
 {
     DashboardScreen dashboardScreen = new DashboardScreen(window, application);
     CreateCustomerStep1Screen step1Screen = dashboardScreen.LaunchCreateCustomer();
     step1Screen.FillAndNext("Rakesh Kumar", "26");
     CreateCustomerStep2Screen step2Screen = new CreateCustomerStep2Screen(window, application);
     step2Screen.Fill("34343545");
 }