Function privacy and unit testing Haskell

后端 未结 2 687
陌清茗
陌清茗 2021-01-30 16:18

How do you deal with function visibility and unit testing in Haskell?

If you export every function in a module so that the unit tests have access to them, you risk other

相关标签:
2条回答
  • 2021-01-30 16:59

    The usual convention is to split your module into public and private parts, i.e.

    module SomeModule.Internal where
    
    -- ... exports all private methods
    

    and then the public API

    module SomeModule where (export1, export2)
    
    import SomeModule.Internal
    

    Then you can import SomeModule.Internal in tests and other places where its crucial to get access to the internal implementation.

    The idea is that the users of your library never accidentally call the private API, but they can use it if the know what they are doing (debugging etc.). This greatly increases the usability of you library compared to forcibly hiding the private API.

    0 讨论(0)
  • 2021-01-30 17:13

    For testing you normally split the application in the cabal project file, between a library, the production executable, and a test-suite executable that tests the library functions, so the test assertion functions are kept apart.

    For external function visibility you split the library modules between the "exposed-modules" section and the "other-modules" section.

    0 讨论(0)
提交回复
热议问题