org.scalatest.enablers.Size.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalatest_2.11.0-RC2 Show documentation
Show all versions of scalatest_2.11.0-RC2 Show documentation
ScalaTest is a free, open-source testing toolkit for Scala and Java
programmers.
The newest version!
/*
* Copyright 2001-2013 Artima, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.scalatest.enablers
/**
* Supertrait for Size
typeclasses.
*
*
* Trait Size
is a typeclass trait for objects that can be queried for size.
* Objects of type T for which an implicit Size[T]
is available can be used
* with the should have size
syntax.
* In other words, this trait enables you to use the size checking
* syntax with arbitrary objects. As an example, consider
* java.net.DatagramPacket
, which has a getSize
method. By default, this
* can't be used with ScalaTest's have size
syntax.
*
*
*
* scala> import java.awt.image.DataBufferByte
* import java.awt.image.DataBufferByte
*
* scala> import org.scalatest.matchers.ShouldMatchers._
* import org.scalatest.matchers.ShouldMatchers._
*
* scala> val db = new DataBufferByte(4)
* db: java.awt.image.DataBufferByte = java.awt.image.DataBufferByte@33d5e94f
*
* scala> db.getSize
* res0: Int = 4
*
* scala> db should have size 4
* :17: error: could not find implicit value for parameter ev: org.scalatest.matchers.ShouldMatchers.Extent[java.awt.image.DataBufferByte]
* db should have size 4
* ^
* scala> implicit val sizeOfDataBufferByte =
* | new Size[DataBufferByte] {
* | def sizeOf(db: DataBufferByte): Long = db.getSize
* | }
* sizeOfDataBufferByte: java.lang.Object with org.scalatest.matchers.ShouldMatchers.Size[java.awt.image.DataBufferByte] = $anon$1@4c69bdf8
*
* scala> db should have size 4
*
* scala> db should have size 3
* org.scalatest.exceptions.TestFailedException: java.awt.image.DataBufferByte@33d5e94f had size 4, not size 3
*
*
* @author Bill Venners
*/
trait Size[T] {
/**
* Returns the size of the passed object.
*
* @param obj the object whose size to return
* @return the size of the passed object
*/
def sizeOf(obj: T): Long
}
/**
* Companion object for Length
that provides implicit implementations for the following types:
*
*
* scala.collection.GenTraversable
* String
* Array
* java.util.Collection
* java.util.Map
* - arbitary object with a
size()
method that returns Int
* - arbitary object with a parameterless
size
method that returns Int
* - arbitary object with a
getSize()
method that returns Int
* - arbitary object with a parameterless
getSize
method that returns Int
* - arbitary object with a
size()
method that returns Long
* - arbitary object with a parameterless
size
method that returns Long
* - arbitary object with a
getSize()
method that returns Long
* - arbitary object with a parameterless
getSize
method that returns Long
*
*/
object Size {
/**
* Enable Size
implementation for java.util.Collection
*
* @tparam JCOL any subtype of java.util.Collection
* @return Size[JCOL]
that supports java.util.Collection
in have size
syntax
*/
implicit def sizeOfJavaCollection[JCOL <: java.util.Collection[_]]: Size[JCOL] =
new Size[JCOL] {
def sizeOf(javaColl: JCOL): Long = javaColl.size
}
/**
* Enable Size
implementation for java.util.Map
*
* @tparam JMAP any subtype of java.util.Map
* @return Size[JMAP]
that supports java.util.Map
in have size
syntax
*/
implicit def sizeOfJavaMap[JMAP <: java.util.Map[_, _]]: Size[JMAP] =
new Size[JMAP] {
def sizeOf(javaMap: JMAP): Long = javaMap.size
}
/**
* Enable Size
implementation for scala.collection.GenTraversable
*
* @tparam TRAV any subtype of scala.collection.GenTraversable
* @return Size[TRAV]
that supports scala.collection.GenTraversable
in have size
syntax
*/
implicit def sizeOfGenTraversable[TRAV <: scala.collection.GenTraversable[_]]: Size[TRAV] =
new Size[TRAV] {
def sizeOf(trav: TRAV): Long = trav.size
}
/**
* Enable Size
implementation for Array
*
* @tparam E the type of the element in the Array
* @return Size[Array[E]]
that supports Array
in have size
syntax
*/
implicit def sizeOfArray[E]: Size[Array[E]] =
new Size[Array[E]] {
def sizeOf(arr: Array[E]): Long = arr.length
}
/**
* Enable Size
implementation for String
*
* @return Size[String]
that supports String
in have size
syntax
*/
implicit val sizeOfString: Size[String] =
new Size[String] {
def sizeOf(str: String): Long = str.length
}
import scala.language.reflectiveCalls
/**
* Enable Size
implementation for arbitary object with size()
method that returns Int
.
*
* @tparam T any type with size()
method that returns Int
* @return Size[T]
that supports T
in have size
syntax
*/
implicit def sizeOfAnyRefWithSizeMethodForInt[T <: AnyRef { def size(): Int}]: Size[T] =
new Size[T] {
def sizeOf(obj: T): Long = obj.size
}
/**
* Enable Size
implementation for arbitary object with parameterless size
method that returns Int
.
*
* @tparam T any type with parameterless size
method that returns Int
* @return Size[T]
that supports T
in have size
syntax
*/
implicit def sizeOfAnyRefWithParameterlessSizeMethodForInt[T <: AnyRef { def size: Int}]: Size[T] =
new Size[T] {
def sizeOf(obj: T): Long = obj.size
}
/**
* Enable Size
implementation for arbitary object with getSize()
method that returns Int
.
*
* @tparam T any type with getSize()
method that returns Int
* @return Size[T]
that supports T
in have size
syntax
*/
implicit def sizeOfAnyRefWithGetSizeMethodForInt[T <: AnyRef { def getSize(): Int}]: Size[T] =
new Size[T] {
def sizeOf(obj: T): Long = obj.getSize
}
/**
* Enable Size
implementation for arbitary object with parameterless getSize
method that returns Int
.
*
* @tparam T any type with parameterless getSize
method that returns Int
* @return Size[T]
that supports T
in have size
syntax
*/
implicit def sizeOfAnyRefWithParameterlessGetSizeMethodForInt[T <: AnyRef { def getSize: Int}]: Size[T] =
new Size[T] {
def sizeOf(obj: T): Long = obj.getSize
}
/**
* Enable Size
implementation for arbitary object with size()
method that returns Long
.
*
* @tparam T any type with size()
method that returns Long
* @return Size[T]
that supports T
in have size
syntax
*/
implicit def sizeOfAnyRefWithSizeMethodForLong[T <: AnyRef { def size(): Long}]: Size[T] =
new Size[T] {
def sizeOf(obj: T): Long = obj.size
}
/**
* Enable Size
implementation for arbitary object with parameterless size
method that returns Long
.
*
* @tparam T any type with parameterless size
method that returns Long
* @return Size[T]
that supports T
in have size
syntax
*/
implicit def sizeOfAnyRefWithParameterlessSizeMethodForLong[T <: AnyRef { def size: Long}]: Size[T] =
new Size[T] {
def sizeOf(obj: T): Long = obj.size
}
/**
* Enable Size
implementation for arbitary object with getSize()
method that returns Long
.
*
* @tparam T any type with getSize()
method that returns Long
* @return Size[T]
that supports T
in have size
syntax
*/
implicit def sizeOfAnyRefWithGetSizeMethodForLong[T <: AnyRef { def getSize(): Long}]: Size[T] =
new Size[T] {
def sizeOf(obj: T): Long = obj.getSize
}
/**
* Enable Size
implementation for arbitary object with getSize
method that returns Long
.
*
* @tparam T any type with getSize
method that returns Long
* @return Size[T]
that supports T
in have size
syntax
*/
implicit def sizeOfAnyRefWithParameterlessGetSizeMethodForLong[T <: AnyRef { def getSize: Long}]: Size[T] =
new Size[T] {
def sizeOf(obj: T): Long = obj.getSize
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy