Upgrade to Pro — share decks privately, control downloads, hide ads and more …

3年間考え続けてきたWebアプリケーションにおけるテストの話

ayato
February 15, 2018

 3年間考え続けてきたWebアプリケーションにおけるテストの話

ayato

February 15, 2018
Tweet

More Decks by ayato

Other Decks in Programming

Transcript

  1. (require '[clojure.test :as t]) (defn f [x y] (+ x

    y)) (t/deftest f-test (t/is (= (f 1 2) 3))
  2. (require '[clojure.test :as t]) (defn f [x y] (+ x

    y)) (t/deftest f-test (t/is (= (f 1 2) 3))