fun circleFillStroke()

in platf-android/src/androidInstrumentedTest/kotlin/org/jetbrains/letsPlot/android/canvas/ContextPath2dTest.kt [273:290]


    fun circleFillStroke() {
        val (canvas, ctx) = createCanvas()
        ctx.beginPath()
        ctx.arc(x = 50.0, y = 50.0, radius = 40.0, startAngle = -PI, endAngle = 0.0)
        ctx.closePath()

        ctx.fillStyle = strokedFillColor
        ctx.fill()

        ctx.strokeStyle = filledStrokeColor
        ctx.setLineWidth(2.0)
        ctx.stroke()

        imageComparer.assertImageEquals(
            expectedFileName = "circle_fill_stroke.bmp",
            actualBitmap = canvas.img
        )
    }