We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e1ee05 commit 82843c7Copy full SHA for 82843c7
Generator.Tests.Unit.EFCore/SingleDatabaseTestPostgreSql.cs
@@ -0,0 +1,22 @@
1
+using Generator.Tests.Common;
2
+using NUnit.Framework;
3
+
4
+namespace Generator.Tests.Unit.EFCore
5
+{
6
+ [TestFixture]
7
+ [NonParallelizable]
8
+ [Category(Constants.Integration)]
9
+ [Category(Constants.DbType.PostgreSql)]
10
+ public class SingleDatabaseTestPostgreSql
11
+ {
12
+ /*[Test]
13
+ public void Read_EfrpgTest_AllColumnTypes()
14
15
+ using var db = new MyEf6DbContext("Server=127.0.0.1;Port=5432;Database=EfrpgTest;User Id=testuser;Password=testtesttest;");
16
+ var rows = db.Allcolumntypes.ToList();
17
+ Assert.IsNotNull(rows);
18
+ Assert.IsNotEmpty(rows);
19
+ Assert.AreEqual(1234, rows.First().Bigint);
20
+ }*/
21
+ }
22
+}
0 commit comments