Skip to content

Commit

Permalink
add test for kmeans
Browse files Browse the repository at this point in the history
  • Loading branch information
AtsushiSakai committed May 3, 2018
1 parent 1c2d663 commit ccb18cf
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 176 deletions.
176 changes: 0 additions & 176 deletions Mapping/kmean_clustering/kmean_clustering.py

This file was deleted.

File renamed without changes
12 changes: 12 additions & 0 deletions tests/test_kmeans_clustering.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from unittest import TestCase

from Mapping.kmeans_clustering import kmeans_clustering as m

print(__file__)


class Test(TestCase):

def test1(self):
m.show_animation = False
m.main()

0 comments on commit ccb18cf

Please sign in to comment.