aboutsummaryrefslogtreecommitdiff
path: root/RhSolutions.Tests
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2023-04-01 15:58:42 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2023-04-01 15:58:42 +0300
commit448af8ecd7bf9db070e090c4b434da693ba0ae89 (patch)
treead9a06664be368ebead54b82a965aa86f0a23cca /RhSolutions.Tests
parentda29243d1d661a6e304018e3317c2ca4ea495db8 (diff)
Move Excel extensions to own project
Diffstat (limited to 'RhSolutions.Tests')
-rw-r--r--RhSolutions.Tests/ExcelTablesTests.cs2
-rw-r--r--RhSolutions.Tests/Usings.cs5
2 files changed, 3 insertions, 4 deletions
diff --git a/RhSolutions.Tests/ExcelTablesTests.cs b/RhSolutions.Tests/ExcelTablesTests.cs
index 3ce71bc..78264ac 100644
--- a/RhSolutions.Tests/ExcelTablesTests.cs
+++ b/RhSolutions.Tests/ExcelTablesTests.cs
@@ -3,7 +3,7 @@
[ExcelTestSettings(OutOfProcess = true, Workbook = @"TestWorkbooks\ExcelTableTest.xlsx")]
public class ExcelTablesTests : IDisposable
{
- ExcelTable.ExcelTable table;
+ ExcelExtensions.Table table;
public ExcelTablesTests()
{
diff --git a/RhSolutions.Tests/Usings.cs b/RhSolutions.Tests/Usings.cs
index 4b95659..bf19a29 100644
--- a/RhSolutions.Tests/Usings.cs
+++ b/RhSolutions.Tests/Usings.cs
@@ -1,5 +1,4 @@
-global using Xunit;
+global using ExcelDna.Testing;
global using Microsoft.Office.Interop.Excel;
-global using ExcelDna.Testing;
-global using RhSolutions.ExcelTable;
global using RhSolutions.Services;
+global using Xunit;