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

ch.inftec.ju.ee.test.Greeter Maven / Gradle / Ivy

Go to download

Contains helping classes for Unit Testing, supporting CDI and EE features, including DB access

There is a newer version: 4.5.1-11
Show newest version
package ch.inftec.ju.ee.test;

import java.io.PrintStream;

import javax.enterprise.context.RequestScoped;

/**
 * Greeter class from the Arquillain getting started guide.
 * 

* Can be used for simple CDI testing * @author Martin * */ @RequestScoped public class Greeter { public void greet(PrintStream to, String name) { to.println(createGreeting(name)); } public String createGreeting(String name) { return "Hello, " + name + "!"; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy