Creating Test Data for Inspection Functionality

I am preparing test data for an inspection feature, where annotation option parameters are expected to be highlighted as errors. However, when I run the test code, the prepared class is not parsed correctly, and the results do not match expectations.

**Test Code**

    fun testAnnotationOptionCheckProcessor() {
        val daoPackage = "inspection/option"
        addDaoJavaFile("$daoPackage/AnnotationOptionTestInValidDao.java")
        val dao = findDaoClass("$daoPackage.AnnotationOptionTestInValidDao")
        myFixture.testHighlighting(false, false, false, dao.containingFile.virtualFile)
    }

**Test Data**

@Dao
public interface AnnotationOptionTestInValidDao {
    @Update(include = {"name", descr="Invalid [invalidField]""invalidField"</error>})
    int updateWithInvalidInclude(Department department);
}

**Error**

Class doma.example.dao.inspection.option.AnnotationOptionTestInValidDao not found
java.lang.AssertionError: Class doma.example.dao.inspection.option.AnnotationOptionTestInValidDao not found
	at org.junit.Assert.fail(Assert.java:89)
	at org.junit.Assert.assertTrue(Assert.java:42)
	at org.junit.Assert.assertNotNull(Assert.java:713)
	at com.intellij.testFramework.fixtures.impl.JavaCodeInsightTestFixtureImpl.findClass(JavaCodeInsightTestFixtureImpl.java:73)
	at org.domaframework.doma.intellij.DomaSqlTest.findDaoClass(DomaSqlTest.kt:254)
	at org.domaframework.doma.intellij.DomaSqlTest.findDaoClass(DomaSqlTest.kt:247)
	at org.domaframework.doma.intellij.inspection.dao.AnnotationOptionParameterInspectionTest.testAnnotationOptionCheckProcessor(AnnotationOptionParameterInspectionTest.kt:51)
	at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)

Compared with other inspection test data, it seems that only <error> tags wrapping PsiIdentifier elements are parsed properly. In contrast, cases where I attempt to wrap string elements fail.

What is the correct way to create test data for this kind of inspection so that error highlighting on string elements can be tested properly?

Thank you.