-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move JSON serialization tests out of query tests (#21594)
- Loading branch information
1 parent
6334381
commit ca2a793
Showing
8 changed files
with
349 additions
and
247 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
test/EFCore.InMemory.FunctionalTests/SerializationInMemoryTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// Copyright (c) .NET Foundation. All rights reserved. | ||
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. | ||
|
||
namespace Microsoft.EntityFrameworkCore | ||
{ | ||
public class SerializationInMemoryTest : SerializationTestBase<F1InMemoryFixture> | ||
{ | ||
public SerializationInMemoryTest(F1InMemoryFixture fixture) | ||
: base(fixture) | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.