Skip to content

Commit

Permalink
Remove unneeded imports from C# tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoglan committed Sep 4, 2023
1 parent a67e207 commit 039c9ae
Show file tree
Hide file tree
Showing 9 changed files with 3 additions and 14 deletions.
1 change: 0 additions & 1 deletion test/cs/ChoicesTest.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
namespace canopy.choices {
using System.Collections.Generic;
using System.Collections;
using System;

using Microsoft.VisualStudio.TestTools.UnitTesting;
Expand Down
5 changes: 3 additions & 2 deletions test/cs/NodeActionsTest.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
namespace canopy.node_actions {
using System.Collections.Generic;
using System.Collections;
using System;
using System.Linq;
using System;

using Microsoft.VisualStudio.TestTools.UnitTesting;

using canopy.test.grammars.node_actions;

[TestClass]
Expand Down
1 change: 0 additions & 1 deletion test/cs/PredicatesTest.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
namespace canopy.predicates {
using System.Collections.Generic;
using System.Collections;
using System;

using Microsoft.VisualStudio.TestTools.UnitTesting;
Expand Down
1 change: 0 additions & 1 deletion test/cs/QuantifiersTest.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
namespace canopy.quantifiers {
using System.Collections.Generic;
using System.Collections;
using System;

using Microsoft.VisualStudio.TestTools.UnitTesting;
Expand Down
1 change: 0 additions & 1 deletion test/cs/SequencesTest.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
namespace canopy.sequences {
using System.Collections.Generic;
using System.Collections;
using System;

using Microsoft.VisualStudio.TestTools.UnitTesting;
Expand Down
1 change: 0 additions & 1 deletion test/cs/TerminalsTest.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
namespace canopy.terminals {
using System.Collections.Generic;
using System.Collections;
using System;

using Microsoft.VisualStudio.TestTools.UnitTesting;
Expand Down
3 changes: 0 additions & 3 deletions test/cs/helpers/ElementsSpec.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
//package helpers;

using System.Collections.Generic;
using System.Collections;
using Microsoft.VisualStudio.TestTools.UnitTesting;

public class ElementsSpec<L> {
Expand Down
1 change: 0 additions & 1 deletion test/cs/helpers/Node.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
//package helpers;

using System.Collections.Generic;
using System.Collections;
using System;

public interface Node<L> {
Expand Down
3 changes: 0 additions & 3 deletions test/cs/helpers/NodeSpec.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
//package helpers;

using System.Collections.Generic;
using System.Collections;
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;

Expand Down

0 comments on commit 039c9ae

Please sign in to comment.