File tree Expand file tree Collapse file tree 3 files changed +8
-30
lines changed
Todoist.Net.Tests/Services Expand file tree Collapse file tree 3 files changed +8
-30
lines changed Original file line number Diff line number Diff line change @@ -33,28 +33,6 @@ public void CreateGetAndDelete_Success()
33
33
Assert . True ( project == null ) ;
34
34
}
35
35
36
- [ Fact ]
37
- [ IntegrationFree ]
38
- public void CreateProjectWithNote_Success ( )
39
- {
40
- var client = TodoistClientFactory . Create ( ) ;
41
-
42
- var projectName = Guid . NewGuid ( ) . ToString ( ) ;
43
- client . Projects . AddAsync ( new Project ( projectName ) ) . Wait ( ) ;
44
-
45
- var projects = client . Projects . GetAsync ( ) . Result ;
46
- var project = projects . FirstOrDefault ( p => p . Name == projectName ) ;
47
-
48
- Assert . True ( project != null ) ;
49
-
50
- client . Projects . DeleteAsync ( project . Id ) . Wait ( ) ;
51
-
52
- projects = client . Projects . GetAsync ( ) . Result ;
53
- project = projects . FirstOrDefault ( p => p . Name == projectName ) ;
54
-
55
- Assert . True ( project == null ) ;
56
- }
57
-
58
36
[ Fact ]
59
37
[ IntegrationFree ]
60
38
public void CreateUpdateIndentAndDelete_Success ( )
Original file line number Diff line number Diff line change @@ -25,11 +25,11 @@ public interface ITodoistClient
25
25
IBackupService Backups { get ; }
26
26
27
27
/// <summary>
28
- /// Gets or sets the filters.
28
+ /// Gets the filters.
29
29
/// </summary>
30
30
/// <value>The filters.</value>
31
31
/// <remarks>Filters are only available for Todoist Premium users.</remarks>
32
- IFiltersService Filters { get ; set ; }
32
+ IFiltersService Filters { get ; }
33
33
34
34
/// <summary>
35
35
/// Gets the items service.
@@ -104,11 +104,11 @@ public interface ITodoistClient
104
104
IUsersService Users { get ; }
105
105
106
106
/// <summary>
107
- /// Gets or sets the email.
107
+ /// Gets the email.
108
108
/// </summary>
109
109
/// <value>The email.</value>
110
110
/// <remarks>Filters are only available for Todoist Premium users.</remarks>
111
- IEmailService Emails { get ; set ; }
111
+ IEmailService Emails { get ; }
112
112
113
113
/// <summary>
114
114
/// Creates the transaction.
Original file line number Diff line number Diff line change @@ -93,18 +93,18 @@ private TodoistClient()
93
93
public IBackupService Backups { get ; }
94
94
95
95
/// <summary>
96
- /// Gets or sets the email.
96
+ /// Gets the email.
97
97
/// </summary>
98
98
/// <value>The email.</value>
99
99
/// <remarks>Filters are only available for Todoist Premium users.</remarks>
100
- public IEmailService Emails { get ; set ; }
100
+ public IEmailService Emails { get ; }
101
101
102
102
/// <summary>
103
- /// Gets or sets the filters.
103
+ /// Gets the filters.
104
104
/// </summary>
105
105
/// <value>The filters.</value>
106
106
/// <remarks>Filters are only available for Todoist Premium users.</remarks>
107
- public IFiltersService Filters { get ; set ; }
107
+ public IFiltersService Filters { get ; }
108
108
109
109
/// <summary>
110
110
/// Gets the items service.
You can’t perform that action at this time.
0 commit comments