Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
DedSec256 committed Apr 24, 2023
1 parent 2f6c70e commit b07420e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ import org.testng.annotations.Test

@Test
@TestEnvironment(solution = "CoreConsoleApp", sdkVersion = SdkVersion.DOT_NET_7)
class UrlInStringsTest: BaseTestWithMarkup() {
class UrlInStringsTest : BaseTestWithMarkup() {
private fun doTest() {
doTestWithMarkupModel("Program.fs", "Program.fs") {
waitForDaemon()
printStream.print(getHighlighters(project!!, this))
printStream.print(getHighlighters(project!!, this) { true })
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
// <frontend:INFORMATION>https://jetbrains.com</frontend:INFORMATION>
let <backend:INFORMATION>url</backend:INFORMATION> = "<frontend:INFORMATION>https://jetbrains.com</frontend:INFORMATION>"

let <backend:INFORMATION>nonUrl</backend:INFORMATION> = "123"
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
// https://jetbrains.com
let url = "https://jetbrains.com"

let nonUrl = "123"

0 comments on commit b07420e

Please sign in to comment.