com.pdsl.exceptions.SentenceNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdsl Show documentation
Show all versions of pdsl Show documentation
The Polymorphic DSL test framework was designed to solve the challenges with testing large, complex systems. Modern architecture requires software to run as distrubited systems or on multiple platforms. The conventional cost of testing these systems is quite high.
PDSL allows a user to describe the system under test using a DSL of some kind: a picture,
sentences in natural languages, graphs, etc. Using a common DSL allows someone to make deeply scalable tests. A simple change to the DSL could generate dozens of tests providing coverage through many layers of the test pyramid or even multiple applications.
package com.pdsl.exceptions;
/**
* Error thrown when PDSL is unable to lex a sentence from some input.
*
* This essentially means that there are sentences included in the test specification or test resource that
* do not exist in the grammar.
*/
public class SentenceNotFoundException extends RuntimeException {
public SentenceNotFoundException(String e) {
super(e);
}
}