GatlingCql Versions Save

Gatling support for Apache Cassandra CQL

GatlingCql-0.0.4

8 years ago

Added check directive ( #4 , thanks @fr0stbyte ).

Now it's possible to verify that a ResultSet contains expected results. Single statement can have multiple check directives.

    .exec(cql("simple SELECT")
        .execute("SELECT * FROM test_table WHERE num = ${randomNum}")
        .check { ResultSet result =>
          if (result.all().isEmpty) {
            Failure("failed test")
          } else {
            Success(true)
          }
        })

GatlingCql-0.0.3

8 years ago

Updated to Gatling 2.1.7 and Scala 2.11.7.

Refs #3

GatlingCql-0.0.2

9 years ago

GatlingCql-0.0.1

9 years ago

Initial release