Upgrade to OPENRNDR 0.3.41-rc.1, add unit tests for shape related code

This commit is contained in:
Edwin Jakobs
2020-03-31 14:54:54 +02:00
parent 99d49060bf
commit 065bf71e51
8 changed files with 134 additions and 15 deletions

View File

@@ -0,0 +1,20 @@
import org.amshove.kluent.`should be equal to`
import org.openrndr.extra.shapes.*
import org.openrndr.shape.Winding
import org.spekframework.spek2.Spek
import org.spekframework.spek2.style.specification.describe
object TestRoundedRectangle : Spek({
describe("a rounded square") {
val rs = RoundedRectangle(100.0, 100.0, 200.0, 200.0, 20.0).contour
it("is closed") {
rs.closed `should be equal to` true
}
it("has clockwise winding") {
rs.winding `should be equal to` Winding.CLOCKWISE
}
}
})