init with basic distance calc

This commit is contained in:
qwjyh 2025-04-13 23:28:51 +09:00
commit fdc6c1a3fa
9 changed files with 283 additions and 0 deletions

7
test/runtests.jl Normal file
View file

@ -0,0 +1,7 @@
using Test
using MethodSimilarity
@testset "Choose" begin
itr = MethodSimilarity.Choose(2, 3)
@test collect(itr) == [(1, 2), (1, 3), (2, 3)]
end