Last active
February 3, 2026 20:24
-
-
Save dacr/224d5b639f4a32ac434cf16590bfc9cc to your computer and use it in GitHub Desktop.
Simplest scalatest test framework usage. / published by https://github.com/dacr/code-examples-manager #d24d8cb3-45c0-4d88-b033-7fae2325607b/6c26bdf81f6d03a8873edf9816362592a7c4c06a
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // summary : Simplest scalatest test framework usage. | |
| // keywords : scala, scalatest, pi, @testable | |
| // publish : gist | |
| // authors : David Crosson | |
| // license : Apache License Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt) | |
| // id : d24d8cb3-45c0-4d88-b033-7fae2325607b | |
| // created-on : 2020-05-31T19:54:52Z | |
| // managed-by : https://github.com/dacr/code-examples-manager | |
| // run-with : scala-cli $file | |
| // --------------------- | |
| //> using scala "3.4.2" | |
| //> using dep "org.scalatest::scalatest:3.2.15" | |
| // --------------------- | |
| import org.scalatest.*, matchers.should.Matchers.* | |
| math.Pi shouldBe 3.14d +- 0.01d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment