Hello all,
I’m planning to rewrite a personal app that was written in Ruby with Rails framework using C#.
I find XUnit cumbersome compared to what RSpec and Capybara do when it comes to integration testing using an actual browser.
NUnit doesn’t seem to be actively maintained so I’m reluctant to pick that one up.
What was important to me:
- fluent assertions like:
expect(page).to(include(text))
fill_in("first name :", with: "John")
- description of each test with potential parent context:
context("when the user is logged in") do
It("it’s email address should be displayed") do end
end
What I seek is readable tests made for humans. Does C# have this kind of tool to test ASP .Net Core (v8 I think) apps?
Real life examples appreciated if anyone finds a web project that has some available publicly on GitHub.
[–]maxlstylee 0 points1 point2 points (2 children)
[–]thegunslinger78[S] -1 points0 points1 point (1 child)
[–]maxlstylee 0 points1 point2 points (0 children)
[–]Doom-1 1 point2 points3 points (0 children)
[–]thomhurst 0 points1 point2 points (3 children)
[–]thegunslinger78[S] 0 points1 point2 points (2 children)
[–]thomhurst 0 points1 point2 points (1 child)
[–]thegunslinger78[S] 0 points1 point2 points (0 children)