Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Adding example for test
- Loading branch information
1 parent
ba7f6cf
commit 8a38bb19f1dad2156cb095821852f29a7b1a3153
Showing
2 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,55 @@ | ||
/* | ||
* Copyright 2017 The Mifos Initiative. | ||
* | ||
* 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 io.mifos.template.api.v1.domain; | ||
|
||
import io.mifos.core.test.domain.ValidationTest; | ||
import io.mifos.core.test.domain.ValidationTestCase; | ||
import org.apache.commons.lang.RandomStringUtils; | ||
import org.junit.runners.Parameterized; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Collection; | ||
|
||
public class SampleTest extends ValidationTest<Sample> { | ||
|
||
public SampleTest(ValidationTestCase<Sample> testCase) { | ||
super(testCase); | ||
} | ||
|
||
@Override | ||
protected Sample createValidTestSubject() { | ||
return Sample.create("xxxx", "yyy"); | ||
} | ||
|
||
@Parameterized.Parameters | ||
public static Collection testCases() { | ||
final Collection<ValidationTestCase> ret = new ArrayList<>(); | ||
ret.add(new ValidationTestCase<Sample>("basicCase") | ||
.adjustment(x -> {}) | ||
.valid(true)); | ||
ret.add(new ValidationTestCase<Sample>("nullIdentifier") | ||
.adjustment(x -> x.setIdentifier(null)) | ||
.valid(false)); | ||
ret.add(new ValidationTestCase<Sample>("tooShortIdentifier") | ||
.adjustment(x -> x.setIdentifier("z")) | ||
.valid(false)); | ||
ret.add(new ValidationTestCase<Sample>("tooLongPayload") | ||
.adjustment(x -> x.setPayload(RandomStringUtils.randomAlphanumeric(513))) | ||
.valid(false)); | ||
return ret; | ||
} | ||
|
||
} |