Renamed to T07PartSeptet and added number matrix

This commit is contained in:
Willem Cazander 2022-10-23 03:04:55 +02:00
parent 026cf0d0ef
commit c1e65e485f
57 changed files with 1905 additions and 165 deletions

View file

@ -0,0 +1,21 @@
package love.distributedrebirth.bassboon.jpp.lang;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import love.distributedrebirth.bassboon.clazz.BãßBȍőnAuthor注;
import love.distributedrebirth.bassboon.jpp.lang.number.matrix.NumberMatrixFactory;
import love.distributedrebirth.bassboon.jpp.lang.number.matrix.NumberMatrixSet;
@BãßBȍőnAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
public class NumberMatrixFactoryTest {
@Test
public void testTweetSmall() {
for (int i=2;i<4;i++) {
NumberMatrixSet film = NumberMatrixFactory.ײاللهזأَكْبَرײ.getFilmRol(i);
Assertions.assertEquals(i, film.getDimension());
System.out.println("dimension: "+film.getDimension()+" size: "+film.values().length);
}
}
}

View file

@ -0,0 +1,16 @@
package love.distributedrebirth.bassboon.jpp.lang;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import love.distributedrebirth.bassboon.clazz.BãßBȍőnAuthor注;
@BãßBȍőnAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
public class StringTweetTest {
@Test
public void testTweetSmall() {
StringTweet tweet = StringTweet.tweetᴺᵉʷ("test", StringTweet.MAX_280);
Assertions.assertEquals(4, tweet.length());
}
}