A Clojure library for approximate comparison of floating point types in tests
Перейти к файлу
Emlyn Corrin e5d87c7dd0 Fix oops 2022-07-18 00:31:33 +01:00
doc Don't use deprecated ns in docs 2022-07-17 23:00:38 +01:00
src Improve docstrings 2022-07-17 11:56:47 +01:00
test Improve test coverage 2022-07-17 23:18:58 +01:00
.gitignore Ignore eastwood file 2019-10-29 14:39:46 +00:00
CHANGELOG.md Protocol-relative URLs break cljdoc 2022-07-17 23:44:35 +01:00
CONTRIBUTING.md Initial commit 2017-10-19 12:35:09 +01:00
LICENSE Initial commit 2017-10-19 12:35:09 +01:00
README.md Don't use deprecated ns in readme 2022-07-18 00:09:20 +01:00
package-lock.json Bump minimist from 1.2.5 to 1.2.6 2022-04-02 05:38:57 +00:00
package.json Bump karma from 6.3.14 to 6.3.16 2022-03-02 13:30:10 +00:00
project.clj Fix oops 2022-07-18 00:31:33 +01:00

README.md

same/ish - floating point comparisons for tests.

Equality may perhaps be a right, but no power on earth can ever turn it into a fact.
        — Honore de Balzac

Travis CI Codecov Dependencies Status Downloads

You have some functions that return doubles or floats and you want to write some tests. How do you compare your results to the expected values? You can't use equality because of rounding errors, so you have to check if the values are near each other. But how near is near enough? And what if your numbers are buried inside data structures?

same/ish is designed to help with these situations.

Usage

See the full API docs are available on cljdoc for more detailed instructions and examples. A brief summary is provided below.

In Leiningen, add the following to your :dependencies in project.clj:

Clojars Project

Then in your test namespace(s), require same.core:

(ns foo-test
  (:requre [clojure.test :refer :all]
           [same :refer.core [ish? zeroish?]]))

To compare two numbers, instead of using = or ==, use ish?:

(defn f [x]
  (* (/ 1. x) x)))

(deftest f-test
  (is (ish? 1.0 (f 49.0))))

You can also compare data structures, and they will be compared element-wise, using ish? for floating point types, == for other numbers, and = for anything else:

(defn g [x]
  {:a x
   :b [(* x x) (Math/sqrt x)]))

(deftest g-test
  (is (ish? {:a 23 :b [529 4.7958315233]}
            (g 23.0))))

Requirements

Clojure 1.7.0 or higher is required due to the reader conditionals required for ClojureScript support.

References

Changelog

See CHANGELOG.md.

Contributing

Contributions are welcomed, see CONTRIBUTING.md for details.

License

Copyright © Microsoft Corporation. All rights reserved.
Licensed under the MIT License.