diff --git a/test/milquetoast/core_test.clj b/test/milquetoast/core_test.clj index e69de29..dfce007 100644 --- a/test/milquetoast/core_test.clj +++ b/test/milquetoast/core_test.clj @@ -0,0 +1,43 @@ +(ns milquetoast.core-test + (:require [clojure.test :refer :all] + [milquetoast.core :as core])) + +(deftest test-create-client + (testing "create-client" + ;; TODO: Add your test implementation here + )) + +(deftest test-create-json-client + (testing "create-json-client" + ;; TODO: Add your test implementation here + )) + +(deftest test-send-message! + (testing "send-message!" + ;; TODO: Add your test implementation here + )) + +(deftest test-stop! + (testing "stop!" + ;; TODO: Add your test implementation here + )) + +(deftest test-add-channel! + (testing "add-channel!" + ;; TODO: Add your test implementation here + )) + +(deftest test-subscribe-topic! + (testing "subscribe-topic!" + ;; TODO: Add your test implementation here + )) + +(deftest test-get-topic! + (testing "get-topic!" + ;; TODO: Add your test implementation here + )) + +(deftest test-get-topic-raw! + (testing "get-topic-raw!" + ;; TODO: Add your test implementation here + ))