gradle / ide-smoke-tests

Apache License 2.0
3 stars 2 forks source link

Add kotlin property assignment test case #87

Closed hegyibalint closed 1 year ago

donat commented 1 year ago

fyi @asodja

asodja commented 1 year ago

Nice! 🎉

Since we have also ConfigurableFileCollection.assign(fileCollection: FileCollection) and assign methods for ListProperty/SetProperty/MapProperty, consider adding additional properties to GreetingTask like:

val cfc: ConfigurableFileCollection
// List and Set have the same extensions, so we probably don't need to test both
val listProperty: ListProperty<String>
val mapProperty: MapProperty<String>

and have some assignments for them. Here you can find defined property assign methods and for cfc assign methods.