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

io.github.mrtimeey.herodomainmodel.assertions.Assertions Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package io.github.mrtimeey.herodomainmodel.assertions;

import io.github.mrtimeey.herodomainmodel.model.Appearance;
import io.github.mrtimeey.herodomainmodel.model.Creation;
import io.github.mrtimeey.herodomainmodel.model.PersonalInformation;
import io.github.mrtimeey.herodomainmodel.model.SuperHero;

public class Assertions {

   protected Assertions() {
      // empty
   }

   public static SuperHeroAssert assertThat(SuperHero superHero) {
      return new SuperHeroAssert(superHero);
   }

   public static AppearanceAssert assertThat(Appearance appearance) {
      return new AppearanceAssert(appearance);
   }

   public static CreationAssert assertThat(Creation creation) {
      return new CreationAssert(creation);
   }

   public static PersonalInformationAssert assertThat(PersonalInformation personalInformation) {
      return new PersonalInformationAssert(personalInformation);
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy