タグ

Testに関するfumokmmのブックマーク (5)

  • clojure.test - kencobaの日記

    testの利用準備。 (use '[clojure.test]) キモはisマクロにあり。 (is (= 4 (+ 2 2))) (is (instance? Integer 256)) (is (.startsWith \"abcde\" \"ab\")) (is (thrown? ArithmeticException (/ 1 0))) isは第2引数をコメントとして受け取る。 (is (= 5 (+ 2 2)) \"Crazy arithmetic\") testingマクロを使うと表明のグループにコメントできる。 (testing \"Arithmetic\" (testing \"with positive integers\" (is (= 4 (+ 2 2))) (is (= 7 (+ 3 4)))) (testing \"with negative integers\"

    clojure.test - kencobaの日記
  • Testing Java with Groovy

    What makes Groovy particularly appealing with respect to other scripting languages is its seamless integration with the Java platform. Because it's based on the Java, Groovy presents an incredibly short learning curve for the Java developer. And once that learning curve has straightened out, Groovy can offer an unparalleled rapid development platform. The fact is, Groovy's relaxed Java-like syntax

    Testing Java with Groovy
  • ScalaTest

    Latest Release - ScalaTest and Scalactic 3.2.19! import collection.mutable.Stack import org.scalatest._ import flatspec._ import matchers._ class ExampleSpec extends AnyFlatSpec with should.Matchers { "A Stack" should "pop values in last-in-first-out order" in { val stack = new Stack[Int] stack.push(1) stack.push(2) stack.pop() should be (2) stack.pop() should be (1) } it should "throw NoSuchEleme

    fumokmm
    fumokmm 2011/02/19
    とりあえず入れた。
  • GT Nitro: カーレーシング・ドラッグレーシングゲーム - Google Play のアプリ

    GT Nitro: Car Game Drag Raceは、典型的なカーゲームではありません。これはスピード、パワー、スキル全開のカーレースゲームです。ブレーキは忘れて、これはドラッグレース、ベイビー!古典的なクラシックから未来的なビーストまで、最もクールで速い車とカーレースできます。スティックシフトをマスターし、ニトロを賢く使って競争を打ち破る必要があります。このカーレースゲームはそのリアルな物理学と素晴らしいグラフィックスであなたの心を爆発させます。これまでプレイしたことのないようなものです。 GT Nitroは、リフレックスとタイミングを試すカーレースゲームです。正しい瞬間にギアをシフトし、ガスを思い切り踏む必要があります。また、大物たちと競いつつ、車のチューニングとアップグレードも行わなければなりません。世界中で最高のドライバーと車とカーレースに挑むことになり、ドラッグレースの王冠

    GT Nitro: カーレーシング・ドラッグレーシングゲーム - Google Play のアプリ
    fumokmm
    fumokmm 2009/03/30
    デキるテスターの心構え。
  • allpairs(Test Tools)

    Let's say you must test something that involves a lot of different variables. Configuration testing is like that: different printers, different print options, different documents. Who knows what … [Read more...] about Allpairs Sometimes you need to test a text field or document with different kinds of stressful inputs. But, it can be a pain to prepare the text data. PerlClip is a tool that helps y

    allpairs(Test Tools)
    fumokmm
    fumokmm 2006/11/30
    AllPairs
  • 1