|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
FileSystemWebResponse.java | - | 100% | 100% | 100% |
|
1 |
package com.diasparsoftware.htmlunitx;
|
|
2 |
|
|
3 |
import java.io.*;
|
|
4 |
import java.net.URL;
|
|
5 |
|
|
6 |
public class FileSystemWebResponse extends InputStreamWebResponse { |
|
7 | 121 |
public FileSystemWebResponse(URL url, File contentFile)
|
8 |
throws FileNotFoundException {
|
|
9 |
|
|
10 | 121 |
super(url, new FileInputStream(contentFile)); |
11 |
} |
|
12 |
} |
|
13 |
|
|