All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.kotlinx.jupyter.test.MagicsHandlingTest.kt Maven / Gradle / Ivy

package org.jetbrains.kotlinx.jupyter.test

import org.jetbrains.kotlinx.jupyter.common.ReplLineMagic
import org.jetbrains.kotlinx.jupyter.magics.LibrariesAwareAbstractMagicsHandler
import org.junit.jupiter.api.Test

class MagicsHandlingTest {
    @Test
    fun `abstract handler should handle all kinds of magics`() {
        val handler = object : LibrariesAwareAbstractMagicsHandler() {}
        ReplLineMagic.values().forEach { magic ->
            // These invocations should not throw
            handler.handle(magic, "", tryIgnoreErrors = false, parseOnly = true)
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy