In the test class there is the following: ``` ...
# getting-started
e
In the test class there is the following:
Copy code
var initialized = false
        val lazyProperty = LazyProperty({ initialized = true; 42 })
        assertFalse("Property shouldn't be initialized before access", initialized)
        val result: Int = lazyProperty.lazy
        assertTrue("Property should be initialized after access", initialized)
        assertEquals(42, result)