Lines Matching refs:childComponentFile

66     JavaFileObject childComponentFile = preprocessedJavaFile("test.ChildComponent",  in testRefSubcomponentAndSubCreatorFails()  local
78 Compilation compilation = compile(componentFile, childComponentFile); in testRefSubcomponentAndSubCreatorFails()
102 JavaFileObject childComponentFile = preprocessedJavaFile("test.ChildComponent", in testRefSubCreatorTwiceFails() local
114 Compilation compilation = compile(componentFile, childComponentFile); in testRefSubCreatorTwiceFails()
136 JavaFileObject childComponentFile = preprocessedJavaFile("test.ChildComponent", in testMoreThanOneCreatorFails() local
153 Compilation compilation = compile(componentFile, childComponentFile); in testMoreThanOneCreatorFails()
160 .inFile(childComponentFile); in testMoreThanOneCreatorFails()
175 JavaFileObject childComponentFile = JavaFileObjects.forSourceLines("test.ChildComponent", in testMoreThanOneCreatorFails_differentTypes() local
192 Compilation compilation = compile(componentFile, childComponentFile); in testMoreThanOneCreatorFails_differentTypes()
199 .inFile(childComponentFile); in testMoreThanOneCreatorFails_differentTypes()
214 JavaFileObject childComponentFile = preprocessedJavaFile("test.ChildComponent", in testCreatorGenericsFails() local
226 Compilation compilation = compile(componentFile, childComponentFile); in testCreatorGenericsFails()
228 assertThat(compilation).hadErrorContaining(messages.generics()).inFile(childComponentFile); in testCreatorGenericsFails()
257 JavaFileObject childComponentFile = preprocessedJavaFile("test.ChildComponent", in testCreatorMissingFactoryMethodFails() local
267 Compilation compilation = compile(componentFile, childComponentFile); in testCreatorMissingFactoryMethodFails()
271 .inFile(childComponentFile); in testCreatorMissingFactoryMethodFails()
276 JavaFileObject childComponentFile = preprocessedJavaFile("test.ChildComponent", in testPrivateCreatorFails() local
286 Compilation compilation = compile(childComponentFile); in testPrivateCreatorFails()
288 assertThat(compilation).hadErrorContaining(messages.isPrivate()).inFile(childComponentFile); in testPrivateCreatorFails()
293 JavaFileObject childComponentFile = preprocessedJavaFile("test.ChildComponent", in testNonStaticCreatorFails() local
303 Compilation compilation = compile(childComponentFile); in testNonStaticCreatorFails()
305 assertThat(compilation).hadErrorContaining(messages.mustBeStatic()).inFile(childComponentFile); in testNonStaticCreatorFails()
310 JavaFileObject childComponentFile = preprocessedJavaFile("test.ChildComponent", in testNonAbstractCreatorFails() local
320 Compilation compilation = compile(childComponentFile); in testNonAbstractCreatorFails()
324 .inFile(childComponentFile); in testNonAbstractCreatorFails()
329 JavaFileObject childComponentFile = preprocessedJavaFile("test.ChildComponent", in testCreatorOneConstructorWithArgsFails() local
341 Compilation compilation = compile(childComponentFile); in testCreatorOneConstructorWithArgsFails()
345 .inFile(childComponentFile); in testCreatorOneConstructorWithArgsFails()
350 JavaFileObject childComponentFile = preprocessedJavaFile("test.ChildComponent", in testCreatorMoreThanOneConstructorFails() local
363 Compilation compilation = compile(childComponentFile); in testCreatorMoreThanOneConstructorFails()
367 .inFile(childComponentFile); in testCreatorMoreThanOneConstructorFails()
372 JavaFileObject childComponentFile = preprocessedJavaFile("test.ChildComponent", in testCreatorEnumFails() local
382 Compilation compilation = compile(childComponentFile); in testCreatorEnumFails()
386 .inFile(childComponentFile); in testCreatorEnumFails()
391 JavaFileObject childComponentFile = preprocessedJavaFile("test.ChildComponent", in testCreatorFactoryMethodReturnsWrongTypeFails() local
403 Compilation compilation = compile(childComponentFile); in testCreatorFactoryMethodReturnsWrongTypeFails()
407 .inFile(childComponentFile) in testCreatorFactoryMethodReturnsWrongTypeFails()
413 JavaFileObject childComponentFile = preprocessedJavaFile("test.ChildComponent", in testInheritedCreatorFactoryMethodReturnsWrongTypeFails() local
427 Compilation compilation = compile(childComponentFile); in testInheritedCreatorFactoryMethodReturnsWrongTypeFails()
433 .inFile(childComponentFile) in testInheritedCreatorFactoryMethodReturnsWrongTypeFails()
439 JavaFileObject childComponentFile = preprocessedJavaFile("test.ChildComponent", in testTwoFactoryMethodsFails() local
452 Compilation compilation = compile(childComponentFile); in testTwoFactoryMethodsFails()
456 .inFile(childComponentFile) in testTwoFactoryMethodsFails()
462 JavaFileObject childComponentFile = preprocessedJavaFile("test.ChildComponent", in testInheritedTwoFactoryMethodsFails() local
477 Compilation compilation = compile(childComponentFile); in testInheritedTwoFactoryMethodsFails()
483 .inFile(childComponentFile) in testInheritedTwoFactoryMethodsFails()
512 JavaFileObject childComponentFile = in testMultipleSettersPerTypeFails() local
541 Compilation compilation = compile(moduleFile, componentFile, childComponentFile); in testMultipleSettersPerTypeFails()
552 .inFile(childComponentFile) in testMultipleSettersPerTypeFails()
581 JavaFileObject childComponentFile = in testMultipleSettersPerTypeIncludingResolvedGenericsFails() local
615 Compilation compilation = compile(moduleFile, componentFile, childComponentFile); in testMultipleSettersPerTypeIncludingResolvedGenericsFails()
626 .inFile(childComponentFile) in testMultipleSettersPerTypeIncludingResolvedGenericsFails()
643 JavaFileObject childComponentFile = in testMultipleSettersPerBoundInstanceTypeFails() local
674 Compilation compilation = compile(componentFile, childComponentFile); in testMultipleSettersPerBoundInstanceTypeFails()
705 JavaFileObject childComponentFile = in testExtraSettersFails() local
732 Compilation compilation = compile(componentFile, childComponentFile); in testExtraSettersFails()
744 .inFile(childComponentFile) in testExtraSettersFails()
792 JavaFileObject childComponentFile = in testMissingSettersFail() local
810 compile(moduleFile, module2File, module3File, componentFile, childComponentFile); in testMissingSettersFail()
817 .inFile(childComponentFile) in testMissingSettersFail()