Pandy Knight
Pandy Knight
Right on, @CoffeeAtBedtime! I think the `dotnet nuget push` command's `--skip-duplicate` option can help us here.
My gut reaction is to agree with @CoffeeAtBedtime. Filtering for visible elements can be done entirely within the locator's query. However, I think there might be a deeper opportunity here...
I'm a bit hesitant to give `Actor`'s `Logger` property a public setter. What if we added a public setter to `XunitLogger`'s `TestOutputHelper` property? Then, the example code above could be...
I think I like your suggestion of making the database connection in the fixture and creating the Actor in the test. Creating one Actor per test helps preserve test case...
That's interesting. Philosophically, the `IInteraction` interface is the base interface for all interactions: Tasks and Questions. I like having that shared root. Pragmatically, `IInteraction` is used by `AnswerCache`. I'm not...
Okay, so I did some playing around, and I realized why `AnswerCache` uses `IInteraction` directly. The answer cache holds answers to any kind of cacheable questions. Its methods control the...
#244 removes `IInteraction` from `AnswerCache` so there's one less reference to it.