sunpengfei
2025-08-08 c69ab569de2794952a864ba2a855b4bc395d4972
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using FlexJobApi.Core;
using System.Threading.Tasks;
 
namespace FlexJobApi.FlexJobServer.Test
{
    public class TaskUnitTest
    {
        private readonly ResourceHttpUtils http;
 
        public TaskUnitTest(ResourceHttpUtils http)
        {
            this.http = http;
        }
 
        [Fact]
        public async Task Test1()
        {
            var categories = await http.SendHttpAsync<
                GetDictionaryCategorySelectQuery,
                FriendlyResult<SelectOption<Guid, GetDictionaryCategorySelectQueryOption>>>(
                new GetDictionaryCategorySelectQuery());
            Console.WriteLine();
            var result = await ResourceUtils.SendHttpAsync<SaveTaskInfoCommand, Guid>(new SaveTaskInfoCommand
            {
                Name = "测试任务",
                BillingMethod = EnumBillingMethod.Month,
                ServiceFee = 100,
                SettlementCycle = EnumSettlementCycle.Month,
                Benefits = new List<string>
                {
 
                }
            });
        }
    }
}