summaryrefslogtreecommitdiffstats
path: root/config-model
diff options
context:
space:
mode:
authorGeir Storli <geirst@oath.com>2018-04-03 17:00:26 +0200
committerGeir Storli <geirst@oath.com>2018-04-03 17:00:26 +0200
commita732c350605fd22d6d6ae1ae0f4b87e466b2d572 (patch)
tree5e7c9c1cb7f393d0b2980ae76a1404665aff5368 /config-model
parent969977516f055bef1196bbe1f7523ee15acbb62b (diff)
Cleanup test function names.
Diffstat (limited to 'config-model')
-rw-r--r--config-model/src/test/java/com/yahoo/vespa/model/application/validation/change/search/AttributeChangeValidatorTest.java26
1 files changed, 13 insertions, 13 deletions
diff --git a/config-model/src/test/java/com/yahoo/vespa/model/application/validation/change/search/AttributeChangeValidatorTest.java b/config-model/src/test/java/com/yahoo/vespa/model/application/validation/change/search/AttributeChangeValidatorTest.java
index eab12db20ef..31102a18811 100644
--- a/config-model/src/test/java/com/yahoo/vespa/model/application/validation/change/search/AttributeChangeValidatorTest.java
+++ b/config-model/src/test/java/com/yahoo/vespa/model/application/validation/change/search/AttributeChangeValidatorTest.java
@@ -35,7 +35,7 @@ public class AttributeChangeValidatorTest {
}
@Test
- public void requireThatAddingAttributeAspectRequireRestart() throws Exception {
+ public void adding_attribute_aspect_require_restart() throws Exception {
Fixture f = new Fixture("field f1 type string { indexing: summary }",
"field f1 type string { indexing: attribute | summary }");
f.assertValidation(newRestartAction(
@@ -43,7 +43,7 @@ public class AttributeChangeValidatorTest {
}
@Test
- public void requireThatRemovingAttributeAspectRequireRestart() throws Exception {
+ public void removing_attribute_aspect_require_restart() throws Exception {
Fixture f = new Fixture("field f1 type string { indexing: attribute | summary }",
"field f1 type string { indexing: summary }");
f.assertValidation(newRestartAction(
@@ -51,19 +51,19 @@ public class AttributeChangeValidatorTest {
}
@Test
- public void requireThatAddingAttributeFieldIsOk() throws Exception {
+ public void adding_attribute_field_is_ok() throws Exception {
Fixture f = new Fixture("", "field f1 type string { indexing: attribute | summary \n attribute: fast-search }");
f.assertValidation();
}
@Test
- public void requireThatRemovingAttributeFieldIsOk() throws Exception {
+ public void removing_attribute_field_is_ok() throws Exception {
Fixture f = new Fixture("field f1 type string { indexing: attribute | summary }", "");
f.assertValidation();
}
@Test
- public void requireThatChangingFastSearchRequireRestart() throws Exception {
+ public void changing_fast_search_require_restart() throws Exception {
new Fixture("field f1 type string { indexing: attribute }",
"field f1 type string { indexing: attribute \n attribute: fast-search }").
assertValidation(newRestartAction(
@@ -71,7 +71,7 @@ public class AttributeChangeValidatorTest {
}
@Test
- public void requireThatChangingFastAccessRequireRestart() throws Exception {
+ public void changing_fast_access_require_restart() throws Exception {
new Fixture("field f1 type string { indexing: attribute \n attribute: fast-access }",
"field f1 type string { indexing: attribute }").
assertValidation(newRestartAction(
@@ -79,7 +79,7 @@ public class AttributeChangeValidatorTest {
}
@Test
- public void requireThatChangingHugeRequireRestart() throws Exception {
+ public void changing_huge_require_restart() throws Exception {
new Fixture("field f1 type string { indexing: attribute }",
"field f1 type string { indexing: attribute \n attribute: huge }").
assertValidation(newRestartAction(
@@ -87,7 +87,7 @@ public class AttributeChangeValidatorTest {
}
@Test
- public void requireThatChangingDensePostingListThresholdRequireRestart() throws Exception {
+ public void changing_dense_posting_list_threshold_require_restart() throws Exception {
new Fixture(
"field f1 type predicate { indexing: attribute \n index { arity: 8 \n dense-posting-list-threshold: 0.2 } }",
"field f1 type predicate { indexing: attribute \n index { arity: 8 \n dense-posting-list-threshold: 0.4 } }").
@@ -96,21 +96,21 @@ public class AttributeChangeValidatorTest {
}
@Test
- public void requireThatRemovingAttributeAspectFromIndexFieldIsOk() throws Exception {
+ public void removing_attribute_aspect_from_index_field_is_ok() throws Exception {
Fixture f = new Fixture("field f1 type string { indexing: index | attribute }",
"field f1 type string { indexing: index }");
f.assertValidation();
}
@Test
- public void requireThatRemovingAttributeAspectFromIndexAndSummaryFieldIsOk() throws Exception {
+ public void removing_attribute_aspect_from_index_and_summary_field_is_ok() throws Exception {
Fixture f = new Fixture("field f1 type string { indexing: index | attribute | summary }",
"field f1 type string { indexing: index | summary }");
f.assertValidation();
}
@Test
- public void requireThatChangingTensorTypeOfTensorFieldRequiresRefeed() throws Exception {
+ public void changing_tensor_type_of_tensor_field_requires_refeed() throws Exception {
new Fixture(
"field f1 type tensor(x[]) { indexing: attribute \n attribute: tensor(x[100]) }",
"field f1 type tensor(y[]) { indexing: attribute \n attribute: tensor(y[]) }")
@@ -121,7 +121,7 @@ public class AttributeChangeValidatorTest {
}
@Test
- public void requireThatCompatibleTensorTypeChangeIsOk() throws Exception {
+ public void compatible_tensor_type_change_is_ok() throws Exception {
new Fixture(
"field f1 type tensor(x[],y[]) { indexing: attribute \n attribute: tensor(x[104], y[52]) }",
"field f1 type tensor(x[200],y[]) { indexing: attribute \n attribute: tensor(x[104], y[52]) }")
@@ -129,7 +129,7 @@ public class AttributeChangeValidatorTest {
}
@Test
- public void requireIncompatibleTensorTypeChangeIsNotOk() throws Exception {
+ public void incompatible_tensor_type_change_is_not_ok() throws Exception {
try {
new Fixture(
"field f1 type tensor(x[],y[]) { indexing: attribute \n attribute: tensor(x[104], y[52]) }",