Skip to content

Commit 7800124

Browse files
committed
chore: clean
1 parent e266b1c commit 7800124

10 files changed

+10
-10
lines changed

insight/src/test/testData/kotlin/BranchProbability.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
public class BranchProbability {
1+
class BranchProbability {
22
fun oneFourthProbability() {
33
if (Math.random() > 0.5) {
44
if (Math.random() > 0.5) {

insight/src/test/testData/kotlin/DeadCodeDuration.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
public class DeadCodeDuration {
1+
class DeadCodeDuration {
22
fun code1() {
33
if (false) {
44
Thread.sleep(200)

insight/src/test/testData/kotlin/MultiInsight.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
public class MultiInsight {
1+
class MultiInsight {
22
fun probabilityAndDuration() {
33
if (Math.random() > 0.5) { //sleep 100ms
44
if (Math.random() > 0.5) { //sleep 100ms

insight/src/test/testData/kotlin/RandomConditional.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
public class RandomConditional {
1+
class RandomConditional {
22
fun randomConditional() {
33
if (Math.random() <= 0.25) {
44
Thread.sleep(4000);

insight/src/test/testData/kotlin/ReanalyzeDuration.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
public class ReanalyzeDuration {
1+
class ReanalyzeDuration {
22
fun code1() {
33
code2()
44
}

insight/src/test/testData/kotlin/Recursion.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
public class Recursion {
1+
class Recursion {
22
fun recursion() {
33
recursion()
44
}

insight/src/test/testData/kotlin/SimplifyBranch.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
public class SimplifyBranch {
1+
class SimplifyBranch {
22
fun simplifyBranch() {
33
if (true) {
44
Thread.sleep(100)

insight/src/test/testData/kotlin/StaticDfa.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
public class StaticDfa {
1+
class StaticDfa {
22
fun staticDfa() {
33
if (0.4 < 0.5) {
44
println(true)

insight/src/test/testData/kotlin/ThreadSleep.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
public class ThreadSleep {
1+
class ThreadSleep {
22
fun sleep() {
33
Thread.sleep(1000)
44
}

insight/src/test/testData/kotlin/UnbalancedBranchProbability.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
public class UnbalancedBranchProbability {
1+
class UnbalancedBranchProbability {
22
fun unbalancedBranchProbability() {
33
if (Math.random() > 0.75) {
44
println(true) //25% probability

0 commit comments

Comments
 (0)