🎉 I'm releasing 12 products in 12 months! If you love product, checkout my new blog workingoutloud.dev

Back to home

Java Anagrams

    Gradle setup

    For our build.gradle file:

    apply plugin: "java" apply plugin: "eclipse" apply plugin: "idea" repositories { mavenCentral() } dependencies { testCompile "junit:junit:4.12" } test { testLogging { exceptionFormat = 'full' events = ["passed", "failed", "skipped"] } }

    Setting up the Tests

    Create file src/test/java/AnagramsTest.java:

    import org.junit.Ignore; import org.junit.Test; import static org.junit.Assert.assertEquals; public class AnagramsTest { @Test public void testAnEmptyString() { assertEquals("", new Anagrams().hello("")); } @Ignore("Remove to run test") @Test public void testAWord() { assertEquals("False", new Anagrams().hello("")); } }

    Anagrams

    In src/main/java/Anagrams.java:

    // TO FINISH

    Running tests

    Run gradle test to compile and test our Anagrams class.

    Personal image

    Dennis O'Keeffe

    @dennisokeeffe92
    • Melbourne, Australia

    Hi, I am a professional Software Engineer. Formerly of Culture Amp, UsabilityHub, Present Company and NightGuru.
    I am currently working on Visibuild.

    1,200+ PEOPLE ALREADY JOINED ❤️️

    Get fresh posts + news direct to your inbox.

    No spam. We only send you relevant content.

    Java Anagrams

    Introduction

    Share this post