11package org .kitteh .irc .client .library .feature .twitch .messagetag ;
22
3+ import org .junit .jupiter .api .Assertions ;
4+ import org .junit .jupiter .api .Test ;
35import org .kitteh .irc .client .library .Client ;
46import org .mockito .Mockito ;
5- import org .junit .Assert ;
6- import org .junit .Test ;
77import java .util .Arrays ;
88import java .util .Collections ;
99import java .util .List ;
@@ -20,7 +20,7 @@ public void verifyInteger(){
2020 EmoteSets tested = EmoteSets .FUNCTION .apply (client , NAME , "123,456,789" );
2121
2222 List <String > expected = Arrays .asList ("123" , "456" , "789" );
23- Assert .assertEquals (expected , tested .getEmoteSets ());
23+ Assertions .assertEquals (expected , tested .getEmoteSets ());
2424 }
2525
2626 /**
@@ -32,7 +32,7 @@ public void verifyUUID(){
3232 EmoteSets tested = EmoteSets .FUNCTION .apply (client , NAME , "fb70df85-0e31-41ea-a13f-c3201bac7013,1a313266-b8e1-49c2-9409-68526a85a350" );
3333
3434 List <String > expected = Arrays .asList ("fb70df85-0e31-41ea-a13f-c3201bac7013" , "1a313266-b8e1-49c2-9409-68526a85a350" );
35- Assert .assertEquals (expected , tested .getEmoteSets ());
35+ Assertions .assertEquals (expected , tested .getEmoteSets ());
3636 }
3737
3838 /**
@@ -42,7 +42,7 @@ public void verifyUUID(){
4242 public void verifyNull (){
4343 Client client = Mockito .mock (Client .class );
4444 EmoteSets tested = EmoteSets .FUNCTION .apply (client , NAME , null );
45-
46- Assert .assertEquals (Collections .emptyList (), tested .getEmoteSets ());
45+
46+ Assertions .assertEquals (Collections .emptyList (), tested .getEmoteSets ());
4747 }
4848}
0 commit comments