aboutsummaryrefslogtreecommitdiff
path: root/unsafe/pom.xml
diff options
context:
space:
mode:
authorJosh Rosen <joshrosen@databricks.com>2015-07-31 21:19:23 -0700
committerReynold Xin <rxin@databricks.com>2015-07-31 21:19:23 -0700
commit14f263448471f182123fc84619559df90e7ae52c (patch)
tree7b8f73c0962d8580ed2f635376695b65993adddc /unsafe/pom.xml
parent6996bd2e81bf6597dcda499d9a9a80927a43e30f (diff)
downloadspark-14f263448471f182123fc84619559df90e7ae52c.tar.gz
spark-14f263448471f182123fc84619559df90e7ae52c.tar.bz2
spark-14f263448471f182123fc84619559df90e7ae52c.zip
[SPARK-9464][SQL] Property checks for UTF8String
This PR is based on the original work by JoshRosen in #7780, which adds ScalaCheck property-based tests for UTF8String. Author: Josh Rosen <joshrosen@databricks.com> Author: Yijie Shen <henry.yijieshen@gmail.com> Closes #7830 from yjshen/utf8-property-checks and squashes the following commits: 593da3a [Yijie Shen] resolve comments c0800e6 [Yijie Shen] Finish all todos in suite 52f51a0 [Josh Rosen] Add some more failing tests 49ed0697 [Josh Rosen] Rename suite 9209c64 [Josh Rosen] UTF8String Property Checks.
Diffstat (limited to 'unsafe/pom.xml')
-rw-r--r--unsafe/pom.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/unsafe/pom.xml b/unsafe/pom.xml
index 33782c6c66..89475ee3cf 100644
--- a/unsafe/pom.xml
+++ b/unsafe/pom.xml
@@ -70,6 +70,16 @@
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.scalacheck</groupId>
+ <artifactId>scalacheck_${scala.binary.version}</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-lang3</artifactId>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<build>
<outputDirectory>target/scala-${scala.binary.version}/classes</outputDirectory>