Email or username:

Password:

Forgot your password?
Top-level
Jonathan Joelson

@jasongorman For me, it’s just like what you said about how tests force you to think carefully about behavior before you write the code. In the case of writing expressive model types, you’re forced to think carefully about the concepts/entities you’re trying to represent.

16 comments
Jonathan Joelson

@jasongorman For me, getting the model types right makes it easier to think through the behavior properly.

The simplest example is nullability. If your type system can express that and enforce null handling, then that forces you to think about stuff like “how should this operation behave when property A is null”?

I’d say sum types (e.g. sealed classes) where the compiler can check that you’ve exhaustively handled all scenarios is the next level of that beyond nullability.

Jakub Neruda

@jjoelson @jasongorman Or even better, replace nullability with Optional types and the API itself forces you to deal with those cases, you don't need a fancy schmancy null-checking systems 😉

Jason Gorman

@jjoelson But how do you know what types the model needs?

Jonathan Joelson

@jasongorman This is like asking a TDD practitioner “how do you know what tests to write?” and the answer is the same.

Jason Gorman

@jjoelson We write tests for end user outcomes. How do you know what types the model needs?

Jonathan Joelson

@jasongorman By the same token, how do you write tests if there are no types defined anywhere?

Jonathan Joelson

@jasongorman My original point is writing model types can sit alongside writing tests as an activity that clarifies what your system actually *is* and *does*.

It sounds like you prefer to think in terms of *behaviors*, hence your focus on tests as the starting point. For me, modeling the problem data domain is a more helpful starting point because it’s difficult for me to think about overall system behaviors in such an abstract way without having types to organize and guide.

Jason Gorman

@jjoelson You define them in the tests by their usage and work backwards 🙂

Jonathan Joelson

@jasongorman This is interesting, because you seem to agree that writing the types and method signatures is a necessary prerequisite to writing complete tests, but of course if you stopped after writing the types and never actually finished the tests then you’ve already done a chunk of the thinking about the system’s behavior.

My original point is that the more expressive the type system, the more you’ve achieved in terms of understanding what your code will do just by writing the types.

Jason Gorman

@jjoelson In TDD, we work backwards from the test code. It tells us what types and methods we need, and we declare those types *only* when a failing test requires it. We don't write a single line of source code that isn't required for the test. The tests drive the design.

The clue's in the name, really 🙂

Wolf480pl replied to Jason

@jasongorman @jjoelson
can you, with clear conscience, press Ctrl+S ona file that doesn't typecheck?

Wolf480pl

@jjoelson @jasongorman
can't you just fire up a repl, and check the type of an expression, then keep adding more things to that expression, until you like the type, and only then copy it to the source file?

IME that has as much of the discovery / improvisation aspect as shell pipelines

Jason Gorman

@wolf480pl @jjoelson Where do users and their goals fit in to this approach?

Wolf480pl

@jasongorman @jjoelson
I'm starting to suspect your problem isn't caused by TDD, but by writing software for people other than yourself /hj

Go Up