コード例 #1
0
        public void TestGetEmployeeList_With_NullCondition()
        {
            var EboServiceClient = new EmployeeBoServiceClient();
            int totalcount       = 0;
            var employee         = EboServiceClient.FindEmployeeByTitle(out totalcount, null, 1, 10);

            Assert.NotNull(employee);
            Assert.Equal(10, employee.Count);
        }
コード例 #2
0
        public void TestGetEmployeeList()
        {
            var EboServiceClient = new EmployeeBoServiceClient();
            int totalcount       = 0;
            var employee         = EboServiceClient.FindEmployeeByTitle(out totalcount, "Technician", 1, 10);

            Assert.NotNull(employee);
            Assert.Equal(10, employee.Count);
        }
コード例 #3
0
 public void TestGetEmployeeList()
 {
     var EboServiceClient = new EmployeeBoServiceClient();
     int totalcount = 0;
     var employee = EboServiceClient.FindEmployeeByTitle(out totalcount,"Technician", 1, 10);
     Assert.NotNull(employee);
     Assert.Equal(10, employee.Count);
 }
コード例 #4
0
 public void TestGetEmployeeList_With_NullCondition()
 {
     var EboServiceClient = new EmployeeBoServiceClient();
     int totalcount = 0;
     var employee = EboServiceClient.FindEmployeeByTitle(out totalcount,null, 1, 10);
     Assert.NotNull(employee);
     Assert.Equal(10, employee.Count);
 }