| package com.apigee.security.oas; |
| |
| import static org.assertj.core.api.Assertions.assertThat; |
| |
| import com.apigee.security.oas.providers.PrintWriterProvider; |
| import java.io.PrintWriter; |
| import org.junit.Test; |
| import org.junit.runner.RunWith; |
| import org.junit.runners.JUnit4; |
| |
| @RunWith(JUnit4.class) |
| public class PrintWriterProviderTest { |
| |
| @Test |
| public void get_returnsPrintWriter() { |
| PrintWriterProvider printWriterProvider = new PrintWriterProvider(); |
| |
| assertThat(printWriterProvider.get()).isInstanceOf(PrintWriter.class); |
| } |
| } |