Skip to content

Commit

Permalink
Adding test for default settings (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkWanderer authored Jan 28, 2023
1 parent 5de2f37 commit b800806
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions ClickHouse.Client.Tests/DefaultSettingsTests.cs
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);
}
}
}

0 comments on commit b800806

Please sign in to comment.