Skip to content

Commit

Permalink
Trying to isolate value type tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremydmiller committed Oct 22, 2024
1 parent 3785d3e commit e277fbb
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public guid_id_document_operations()
theStore = DocumentStore.For(opts =>
{
opts.Connection(ConnectionSource.ConnectionString);
opts.DatabaseSchemaName = "strong_typed";
opts.DatabaseSchemaName = "strong_typed1";

opts.ApplicationAssembly = GetType().Assembly;
opts.GeneratedCodeMode = TypeLoadMode.Auto;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public int_based_document_operations()
theStore = DocumentStore.For(opts =>
{
opts.Connection(ConnectionSource.ConnectionString);
opts.DatabaseSchemaName = "strong_typed";
opts.DatabaseSchemaName = "strong_typed2";
});

theSession = theStore.LightweightSession();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public long_based_document_operations()
theStore = DocumentStore.For(opts =>
{
opts.Connection(ConnectionSource.ConnectionString);
opts.DatabaseSchemaName = "strong_typed";
opts.DatabaseSchemaName = "strong_typed3";
});

theSession = theStore.LightweightSession();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public string_id_document_operations()
theStore = DocumentStore.For(opts =>
{
opts.Connection(ConnectionSource.ConnectionString);
opts.DatabaseSchemaName = "strong_typed";
opts.DatabaseSchemaName = "strong_typed4";

opts.ApplicationAssembly = GetType().Assembly;
opts.GeneratedCodeMode = TypeLoadMode.Auto;
Expand Down
2 changes: 1 addition & 1 deletion src/ValueTypeTests/Vogen/guid_based_document_operations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public guid_id_document_operations()
theStore = DocumentStore.For(opts =>
{
opts.Connection(ConnectionSource.ConnectionString);
opts.DatabaseSchemaName = "strong_typed";
opts.DatabaseSchemaName = "strong_typed5";

opts.ApplicationAssembly = GetType().Assembly;
opts.GeneratedCodeMode = TypeLoadMode.Auto;
Expand Down
2 changes: 1 addition & 1 deletion src/ValueTypeTests/Vogen/int_based_document_operations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public int_based_document_operations()
theStore = DocumentStore.For(opts =>
{
opts.Connection(ConnectionSource.ConnectionString);
opts.DatabaseSchemaName = "strong_typed";
opts.DatabaseSchemaName = "strong_typed6";
});

theSession = theStore.LightweightSession();
Expand Down
2 changes: 1 addition & 1 deletion src/ValueTypeTests/Vogen/long_based_document_operations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public long_based_document_operations()
theStore = DocumentStore.For(opts =>
{
opts.Connection(ConnectionSource.ConnectionString);
opts.DatabaseSchemaName = "strong_typed";
opts.DatabaseSchemaName = "strong_typed7";
});

theSession = theStore.LightweightSession();
Expand Down
2 changes: 1 addition & 1 deletion src/ValueTypeTests/Vogen/string_id_document_operations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public string_id_document_operations()
theStore = DocumentStore.For(opts =>
{
opts.Connection(ConnectionSource.ConnectionString);
opts.DatabaseSchemaName = "strong_typed";
opts.DatabaseSchemaName = "strong_typed8";

opts.ApplicationAssembly = GetType().Assembly;
opts.GeneratedCodeMode = TypeLoadMode.Auto;
Expand Down

0 comments on commit e277fbb

Please sign in to comment.