aboutsummaryrefslogtreecommitdiffstats
path: root/asdc-tests/src/test/resources/CI/importResourceTests/validateProporties_typeInit_valueString/validateProporties_typeInit_valueString.json
blob: 29e4b29be09d0539346174f32f84549a44689b94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "payloadName": "normative-types-new-validateProporties_typeInit_valueString.yml",
  "contactId": "jh0003",
  "name": "tosca.nodes.SoftwareComponent",
  "description": "Represents a generic software component that can be managed and run by a Compute Node Type.",
  "resourceIconPath": "defaulticon",
 	"categories": [{
		"name": "Generic",
		"subcategories": [{
			"name": "Abstract"
		}]
	}],
  "tags": [
    "tosca.nodes.SoftwareComponent"
  ]
}
cable 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. * ============LICENSE_END========================================================= */ package org.openecomp.sdcrests.item.types; import org.junit.jupiter.api.Test; import static com.google.code.beanmatchers.BeanMatchers.hasValidBeanConstructor; import static com.google.code.beanmatchers.BeanMatchers.hasValidGettersAndSetters; import static org.hamcrest.CoreMatchers.allOf; import static org.hamcrest.MatcherAssert.assertThat; class ItemDtoTest { @Test void testBean() { assertThat(ItemDto.class, allOf( hasValidBeanConstructor(), hasValidGettersAndSetters() )); } }