Giter Site home page Giter Site logo

Comments (4)

CaptnCodr avatar CaptnCodr commented on June 12, 2024

Hello @C0DK ,
it depends what type somePerson is.

I assume that somePerson is a complex type like a record or class. In case of that WithName and/or HaveName must support the same type as somePerson.

Even so, I recommend assertions as simply as possible e.g.:

type Person = { Name: string; Age: int }

let somePerson = ... // function that returns: { Name = "test"; Age = 34 }

somePerson.Name
|> should equal "test"

// and perhaps:
somePerson.Age 
|> should equal 34

from fsunit.

C0DK avatar C0DK commented on June 12, 2024

I'm new to FSharp so I might just take things to the extreme, but having a test that is simply one expression is neat (in my opinion), so it was simply to not have to access the property. Currently, I was doing:

somePerson
|> withName SomeName
|> getName
|> Should equal SomeName

Should I just use let more rather than doing everything as a singular expression?

from fsunit.

CaptnCodr avatar CaptnCodr commented on June 12, 2024

Should I just use let more rather than doing everything as a singular expression?

No, that was just an example on my side for better readability.
You can also write from my example:

somePerson
|> fun p -> p.Name
|> should equal "test"

An extra constraint or operator in FsUnit would be too special, btw.
Use single/short functions to have a little toolset in your implementations.

from fsunit.

C0DK avatar C0DK commented on June 12, 2024

alright. Consider it closed then :) I might raise another ticket if i have a more complex case. In a c# project where we use NUnit, we do have custom constraints for specific things, like checking whether a StatusCode is "Succesful" (200 <= x < 300) based on NUnits custom constraints https://docs.nunit.org/articles/nunit/extending-nunit/Custom-Constraints.html - and i think that was my offset. but in this case i do see your point.

Thank you :) I also didn't think of using a fun p -> p.Name rather than an explicit function defined above. neat!

from fsunit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.