Skip to content

Commit 43b9123

Browse files
committed
rename test functions
1 parent bfbffbe commit 43b9123

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

exercises/practice/difference-of-squares/test/difference_of_squares_test.clj

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,38 @@
22
(:require [clojure.test :refer [deftest testing is]]
33
difference-of-squares))
44

5-
(deftest test-e46c542b-31fc-4506-bcae-6b62b3268537
5+
(deftest square-of-sum_test_1
66
(testing "Square the sum of the numbers up to the given number -> square of sum 1"
77
(is (= 1 (difference-of-squares/square-of-sum 1)))))
88

9-
(deftest test-9b3f96cb-638d-41ee-99b7-b4f9c0622948
9+
(deftest square-of-sum_test_2
1010
(testing "Square the sum of the numbers up to the given number -> square of sum 5"
1111
(is (= 225 (difference-of-squares/square-of-sum 5)))))
1212

13-
(deftest test-54ba043f-3c35-4d43-86ff-3a41625d5e86
13+
(deftest square-of-sum_test_3
1414
(testing "Square the sum of the numbers up to the given number -> square of sum 100"
1515
(is (= 25502500 (difference-of-squares/square-of-sum 100)))))
1616

17-
(deftest test-01d84507-b03e-4238-9395-dd61d03074b5
17+
(deftest square-of-sum_test_4
1818
(testing "Sum the squares of the numbers up to the given number -> sum of squares 1"
1919
(is (= 1 (difference-of-squares/sum-of-squares 1)))))
2020

21-
(deftest test-c93900cd-8cc2-4ca4-917b-dd3027023499
21+
(deftest square-of-sum_test_5
2222
(testing "Sum the squares of the numbers up to the given number -> sum of squares 5"
2323
(is (= 55 (difference-of-squares/sum-of-squares 5)))))
2424

25-
(deftest test-94807386-73e4-4d9e-8dec-69eb135b19e4
25+
(deftest square-of-sum_test_6
2626
(testing "Sum the squares of the numbers up to the given number -> sum of squares 100"
2727
(is (= 338350 (difference-of-squares/sum-of-squares 100)))))
2828

29-
(deftest test-44f72ae6-31a7-437f-858d-2c0837adabb6
29+
(deftest square-of-sum_test_7
3030
(testing "Subtract sum of squares from square of sums -> difference of squares 1"
3131
(is (= 0 (difference-of-squares/difference 1)))))
3232

33-
(deftest test-005cb2bf-a0c8-46f3-ae25-924029f8b00b
33+
(deftest square-of-sum_test_8
3434
(testing "Subtract sum of squares from square of sums -> difference of squares 5"
3535
(is (= 170 (difference-of-squares/difference 5)))))
3636

37-
(deftest test-b1bf19de-9a16-41c0-a62b-1f02ecc0b036
37+
(deftest square-of-sum_test_9
3838
(testing "Subtract sum of squares from square of sums -> difference of squares 100"
3939
(is (= 25164150 (difference-of-squares/difference 100)))))

0 commit comments

Comments
 (0)