Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ftomassetti committed Jun 30, 2023
1 parent a097c3f commit 5cb47ca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,13 @@ public data class Property(
public var `value`: Value,
) : Node()"""
val existingClasses = KotlinCodeProcessor().classesDeclaredInFile(code)
assertEquals(setOf("com.strumenta.props.PropertiesFile", "com.strumenta.props.SomeOtherClass", "com.strumenta.props.Property"), existingClasses)
assertEquals(
setOf(
"com.strumenta.props.PropertiesFile", "com.strumenta.props.SomeOtherClass",
"com.strumenta.props.Property"
),
existingClasses
)

val existingASTClasses = KotlinCodeProcessor().astClassesDeclaredInFile(code)
assertEquals(setOf("com.strumenta.props.PropertiesFile", "com.strumenta.props.Property"), existingASTClasses)
Expand Down

0 comments on commit 5cb47ca

Please sign in to comment.