File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed
ksqlDB.RestApi.Client.IntegrationTests/KSql/Linq
ksqlDB.RestApi.Client.Tests Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 9
9
using ksqlDB . RestApi . Client . KSql . RestApi . Http ;
10
10
using ksqlDB . RestApi . Client . KSql . RestApi . Statements ;
11
11
using ksqlDB . RestApi . Client . KSql . RestApi . Statements . Properties ;
12
- using Microsoft . VisualStudio . TestTools . UnitTesting ;
13
12
using NUnit . Framework ;
14
13
15
14
namespace ksqlDb . RestApi . Client . IntegrationTests . KSql . Linq
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ public void HasKey_Field()
50
50
}
51
51
52
52
[ Test ]
53
- public void Property_IgnoreField ( )
53
+ public void Property_Ignore ( )
54
54
{
55
55
//Arrange
56
56
@@ -68,7 +68,7 @@ public void Property_IgnoreField()
68
68
}
69
69
70
70
[ Test ]
71
- public void Property_IgnoreByInsertsField ( )
71
+ public void Property_IgnoreInDML ( )
72
72
{
73
73
//Arrange
74
74
Original file line number Diff line number Diff line change @@ -156,15 +156,15 @@ private class Actor
156
156
public string Name { get ; set ; } = null ! ;
157
157
}
158
158
159
- public static IEnumerable < ( IdentifierEscaping , string ) > GenerateIgnoreByInsertsTestCases ( )
159
+ public static IEnumerable < ( IdentifierEscaping , string ) > GenerateIgnoreInDMLTestCases ( )
160
160
{
161
161
yield return ( Never , "INSERT INTO Actors (Id) VALUES (1);" ) ;
162
162
yield return ( Keywords , "INSERT INTO Actors (Id) VALUES (1);" ) ;
163
163
yield return ( Always , "INSERT INTO `Actors` (`Id`) VALUES (1);" ) ;
164
164
}
165
165
166
- [ TestCaseSource ( nameof ( GenerateIgnoreByInsertsTestCases ) ) ]
167
- public void Generate_UseModelBuilder_IgnoreByInserts ( ( IdentifierEscaping escaping , string expected ) testCase )
166
+ [ TestCaseSource ( nameof ( GenerateIgnoreInDMLTestCases ) ) ]
167
+ public void Generate_UseModelBuilder_IgnoreInDML ( ( IdentifierEscaping escaping , string expected ) testCase )
168
168
{
169
169
//Arrange
170
170
modelBuilder . Entity < Actor > ( )
You can’t perform that action at this time.
0 commit comments