File tree Expand file tree Collapse file tree
test/F23.StringSimilarity.Tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ namespace F23.StringSimilarity.Tests
3434{
3535 [ SuppressMessage ( "ReSharper" , "ArgumentsStyleLiteral" ) ]
3636 [ SuppressMessage ( "ReSharper" , "ArgumentsStyleNamedExpression" ) ]
37- public class CosineTest ( )
37+ public class CosineTest
3838 {
3939 [ Fact ]
4040 public void TestSimilarity ( )
Original file line number Diff line number Diff line change @@ -69,8 +69,8 @@ public void TestDistance()
6969 [ Fact ]
7070 public void GetProfile_IsPublic ( )
7171 {
72- var cosine = new Jaccard ( k : 2 ) ;
73- var profile = cosine . GetProfile ( "test string" ) ;
72+ var jaccard = new Jaccard ( k : 2 ) ;
73+ var profile = jaccard . GetProfile ( "test string" ) ;
7474
7575 Assert . NotNull ( profile ) ;
7676 }
Original file line number Diff line number Diff line change @@ -73,8 +73,8 @@ public void TestDistance()
7373 [ Fact ]
7474 public void GetProfile_IsPublic ( )
7575 {
76- var cosine = new QGram ( k : 2 ) ;
77- var profile = cosine . GetProfile ( "test string" ) ;
76+ var qgram = new QGram ( k : 2 ) ;
77+ var profile = qgram . GetProfile ( "test string" ) ;
7878
7979 Assert . NotNull ( profile ) ;
8080 }
Original file line number Diff line number Diff line change @@ -68,8 +68,8 @@ public void TestDistance()
6868 [ Fact ]
6969 public void GetProfile_IsPublic ( )
7070 {
71- var cosine = new SorensenDice ( k : 2 ) ;
72- var profile = cosine . GetProfile ( "test string" ) ;
71+ var dice = new SorensenDice ( k : 2 ) ;
72+ var profile = dice . GetProfile ( "test string" ) ;
7373
7474 Assert . NotNull ( profile ) ;
7575 }
You can’t perform that action at this time.
0 commit comments