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

org.gradle.buildinit.plugins.MavenConversionIntegrationTest.multiModuleWithRemoteParent.webinar-impl.src.test.java.webinar.WebinarTest Maven / Gradle / Ivy

There is a newer version: 8.6
Show newest version
package webinar;

import org.junit.Assert;
import org.junit.Test;

public class WebinarTest {
  
  @Test public void normalizesDescription() {
    //when
    Demoable demoable = new Webinar("nice   day");
    
    //then
    Assert.assertEquals("nice day", demoable.getDescription());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy