there is example how i mock mysql
import org.scalamock.scalatest.MockFactory
val connectionMock = mock[java.sql.Connection]
val statementMock = mock[PreparedStatement]
(conMock.prepareStatement(_:
String)).expects(sql.toString).returning(statementMock)
(statementMock.executeUpdate _).expects()
On Thu, Oct 29, 2015 at 12:27 PM, Priya Ch <[email protected]>
wrote:
> Hi All,
>
> For my Spark Streaming code, which writes the results to Cassandra DB,
> I need to write Unit test cases. what are the available test frameworks to
> mock the connection to Cassandra DB ?
>