I am using VS2013
I have added a UnitTest project that executes the following assertions: (Succesfull)
```
Assert.IsNotNull(drivers);
Assert.AreEqual(recordsExpected, drivers.Count);
```
When I add the FluentAssertions and replace my assertions: (fails because it tries to debug my dbScripts Project) See attached image.
```
drivers.Should().NotBeNull();
drivers.Count.Should().Be(recordsExpected);
```
How do I configure FluentAssertions to ignore my dbScripts projects?
Regards,
Angel L. Bermudez, Jr.
I have added a UnitTest project that executes the following assertions: (Succesfull)
```
Assert.IsNotNull(drivers);
Assert.AreEqual(recordsExpected, drivers.Count);
```
When I add the FluentAssertions and replace my assertions: (fails because it tries to debug my dbScripts Project) See attached image.
```
drivers.Should().NotBeNull();
drivers.Count.Should().Be(recordsExpected);
```
How do I configure FluentAssertions to ignore my dbScripts projects?
Regards,
Angel L. Bermudez, Jr.