You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+31-9Lines changed: 31 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
Excel-Comparision Framework which is able to create a human readable diff when comparing Excel Files.
1
+
Excel-Comparision Framework which is able to create a human readable diff when comparing Excel Files. The Values are extracted using the `org.apache.poi` Framework
2
2
3
3
## Integration
4
4
@@ -15,20 +15,22 @@ dependencies {
15
15
### Maven
16
16
```
17
17
<repositories>
18
-
<repository>
19
-
<id>jcenter</id>
20
-
<url>https://jcenter.bintray.com/</url>
21
-
</repository>
18
+
<repository>
19
+
<id>jcenter</id>
20
+
<url>https://jcenter.bintray.com/</url>
21
+
</repository>
22
22
</repositories>
23
23
...
24
24
<dependency>
25
-
<groupId>de.sijakubo</groupId>
26
-
<artifactId>excel-comparison</artifactId>
27
-
<version>0.1.1</version>
25
+
<groupId>de.sijakubo</groupId>
26
+
<artifactId>excel-comparison</artifactId>
27
+
<version>0.1.1</version>
28
28
</dependency>
29
29
```
30
30
31
-
## General Usage
31
+
## General Usage Assertions
32
+
33
+
To compare workbook / sheet content you can use the `ExcelAssert.java`. This provides methods to either compare Files or `org.apache.poi.ss.usermodel.Workbook`
32
34
33
35
### JUnit
34
36
```java
@@ -59,3 +61,23 @@ public class ExcelComparisonTest {
0 commit comments