Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created October 21, 2019 04:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IntegerMan/9aa3f09d59bbb8d06845fedb518af7bb to your computer and use it in GitHub Desktop.
Save IntegerMan/9aa3f09d59bbb8d06845fedb518af7bb to your computer and use it in GitHub Desktop.
[<Theory>]
[<InlineData(4, 2, 4, 1, true)>]
[<InlineData(4, 2, 4, 0, false)>]
let ``Point Adjaency Tests`` (x1, y1, x2, y2, expectedAdjacent) =
// Arrange
let pos1 = newPos x1 y1
let pos2 = newPos x2 y2
// Act & Assert
isAdjacentTo pos1 pos2 |> should equal expectedAdjacent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment