All Downloads are FREE. Search and download functionalities are using the official Maven repository.

test-projects.src.test.java.example.TestSuiteExample Maven / Gradle / Ivy



package example;


public class TestSuiteExample {

    @org.junit.Test
    public void test3() {
        example.Example ex = new example.Example();
        java.lang.String s = "abcd";
        org.junit.Assert.assertEquals('d', ex.charAt(s, ((s.length()) - 1)));
    }

    @org.junit.Test
    public void test4() {
        example.Example ex = new example.Example();
        java.lang.String s = "abcd";
        org.junit.Assert.assertEquals('d', ex.charAt(s, 12));
    }

    @org.junit.Test
    public void test7() {
        example.Example ex = new example.Example();
        org.junit.Assert.assertEquals('c', ex.charAt("abcd", 2));
    }

    @org.junit.Test
    public void test8() {
        example.Example ex = new example.Example();
        org.junit.Assert.assertEquals('b', ex.charAt("abcd", 1));
    }

    @org.junit.Test
    public void test9() {
        example.Example ex = new example.Example();
        org.junit.Assert.assertEquals('f', ex.charAt("abcdefghijklm", 5));
    }

    @org.junit.Test
    public void test2() {
        example.Example ex = new example.Example();
        org.junit.Assert.assertEquals('d', ex.charAt("abcd", 3));
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy