Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the testing suite from FunSuite to AnyFunSuite #21

Open
dagmendez opened this issue May 25, 2022 · 0 comments
Open

Update the testing suite from FunSuite to AnyFunSuite #21

dagmendez opened this issue May 25, 2022 · 0 comments

Comments

@dagmendez
Copy link

Hello,

The actual implementation of the template for the testing class has a not longer available testing suite, causing the generated project from the template to crush during compilation.

In the actual version of the template, this is the code for the test:

package $organization$.$name$

/**
 * A simple test for everyone's favourite wordcount example.
 */

import com.holdenkarau.spark.testing.SharedSparkContext
import org.scalatest.FunSuite

class WordCountTest extends FunSuite with SharedSparkContext {

Could it be updated to this?:

package $organization$.$name$

/**
 * A simple test for everyone's favourite wordcount example.
 */

import com.holdenkarau.spark.testing.SharedSparkContext
import org.scalatest.funsuite.AnyFunSuite

class WordCountTest extends AnyFunSuite with SharedSparkContext {

Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant