Searched refs:processClass (Results 1 – 3 of 3) sorted by relevance
20 import androidx.lifecycle.utils.processClass33 processClass("foo.Bar").compilesWithoutError() in testTest()38 processClass("foo.OnAnyMethod") in testOnAny()48 processClass("foo.InheritanceOk1").compilesWithoutError() in testInheritance()53 processClass("foo.InheritanceOk2") in testInheritance2()68 processClass("foo.InheritanceOk3") in testInheritance3()83 processClass("NoPackageOk").compilesWithoutError() in testNoPackageClass()88 processClass("foo.InterfaceOk1").compilesWithoutError() in testInterface1()93 processClass("foo.InterfaceOk2") in testInterface2()111 processClass("foo.DifferentPackagesBase1", "bar.DifferentPackagesDerived1") in testInheritanceDifferentPackages1()[all …]
19 import androidx.lifecycle.utils.processClass48 processClass(name).failsToCompile().withErrorContaining(errorMsg) in data()
34 fun processClass(className: String, vararg fullClassNames: String): CompileTester { in processClass() method