Skip to content

Commit

Permalink
Revert "Add test trying to recreate the issue"
Browse files Browse the repository at this point in the history
This reverts commit 90fdb46.
  • Loading branch information
gjunge committed Feb 12, 2018
1 parent 2d1b6ff commit 0208f90
Showing 1 changed file with 1 addition and 24 deletions.
25 changes: 1 addition & 24 deletions SolrNet.Cloud.Tests/UnityTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,28 +38,5 @@ public void ShouldResolveReadOnlyOperationsFromStartupContainer()
Assert.NotNull(
Setup().Resolve<ISolrReadOnlyOperations<FakeEntity>>());
}

[Fact]
public void ShouldResolveIOperations ()
{
using (var container = new UnityContainer())
{
var cont = new Unity.SolrNetCloudIntegration.SolrNetContainerConfiguration().ConfigureContainer(new FakeProvider(), container);
var obj = cont.Resolve<ISolrOperations<Camera>>();

}
}

public class Camera
{
[Attributes.SolrField("Name")]
public string Name { get; set; }

[Attributes.SolrField("UID")]
public int UID { get; set; }

[Attributes.SolrField("id")]
public string Id { get; set; }
}
}
}
}

0 comments on commit 0208f90

Please sign in to comment.