View Javadoc
1   package ch.hslu.exercises.sw13.ex3;
2   
3   import org.junit.jupiter.api.Test;
4   
5   import static org.junit.jupiter.api.Assertions.*;
6   
7   class KMPSearchTest {
8   
9       @Test
10      void testKMPSearch() {
11          assertEquals(8, KMPSearch.kmpSearch("ANASNAOPANANAS", "ANANAS"));
12      }
13  }