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

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

Sponsored · SiteGround - Reliable hosting with speed, security, and support you can count on.
Avatar for ayato ayato
February 15, 2018

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

Avatar for ayato

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))