}
private static void matchTest(@NotNull MarkedTestStructure markedTestStructure, @NotNull JstdTestStructure testStructure) {
Assert.assertEquals("Build test name is not equal to the marked one", markedTestStructure.getName(), testStructure.getName());
String testName = testStructure.getName();
JSProperty markedJsProperty = markedTestStructure.getPropertyPsiElement();
if (markedJsProperty != null) {
matchPsiElement(testName, "property", markedJsProperty, testStructure.getJsProperty());
} else {
matchPsiElement(testName, "declaration", markedTestStructure.getDeclarationPsiElement(), testStructure.getTestMethodNameDeclaration());
matchPsiElement(testName, "body", markedTestStructure.getBodyPsiElement(), testStructure.getTestMethodBody());