-
-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding test for default settings (#263)
- Loading branch information
1 parent
5de2f37
commit b800806
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
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,23 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using ClickHouse.Client.ADO; | ||
using NUnit.Framework; | ||
|
||
namespace ClickHouse.Client.Tests | ||
{ | ||
public class DefaultSettingsTests | ||
{ | ||
[Test] | ||
public void DefaultSettingsShouldMatch() | ||
{ | ||
var builder = new ClickHouseConnectionStringBuilder(); | ||
Assert.AreEqual(true, builder.UseCustomDecimals); | ||
Assert.AreEqual(true, builder.Compression); | ||
Assert.AreEqual(true, builder.UseServerTimezone); | ||
Assert.AreEqual(false, builder.UseSession); | ||
} | ||
} | ||
} |