Skip to content

Commit ccb18cf

Browse files
committed
add test for kmeans
1 parent 1c2d663 commit ccb18cf

3 files changed

Lines changed: 12 additions & 176 deletions

File tree

Mapping/kmean_clustering/kmean_clustering.py

Lines changed: 0 additions & 176 deletions
This file was deleted.

tests/test_kmeans_clustering.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
from unittest import TestCase
2+
3+
from Mapping.kmeans_clustering import kmeans_clustering as m
4+
5+
print(__file__)
6+
7+
8+
class Test(TestCase):
9+
10+
def test1(self):
11+
m.show_animation = False
12+
m.main()

0 commit comments

Comments
 (0)