|
1
|
|
package com.github.dakusui.symfonion.cli.subcommands; |
|
2
|
|
|
|
3
|
|
import com.github.dakusui.logias.lisp.Context; |
|
4
|
|
|
|
5
|
|
/** |
|
6
|
|
* A utility class to access the **Logias** library, which builds and executes S-expressions using **JSON**. |
|
7
|
|
*/ |
|
8
|
|
public enum LogiasUtils { |
|
9
|
|
; |
|
10
|
|
|
|
11
|
|
/** |
|
12
|
|
* Creates a `Context` object of **Logias** library. |
|
13
|
|
* |
|
14
|
|
* @return A new context object. |
|
15
|
|
*/ |
|
16
|
|
public static Context createLogiasContext() { |
|
17
|
1
1. createLogiasContext : replaced return value with null for com/github/dakusui/symfonion/cli/subcommands/LogiasUtils::createLogiasContext → SURVIVED
|
return Context.ROOT.createChild(); |
|
18
|
|
} |
|
19
|
|
} |
| | Mutations |
| 17 |
|
1.1 Location : createLogiasContext Killed by : none replaced return value with null for com/github/dakusui/symfonion/cli/subcommands/LogiasUtils::createLogiasContext → SURVIVED
Covering tests
Covered by tests:
- com.github.dakusui.symfonion.tests.InvalidJsonErrorTest.[engine:junit-jupiter]/[class:com.github.dakusui.symfonion.tests.InvalidJsonErrorTest]/[method:missingSection_parts()]
- com.github.dakusui.symfonion.tests.cli.subcommands.CompatCompileTest.[engine:junit-jupiter]/[class:com.github.dakusui.symfonion.tests.cli.subcommands.CompatCompileTest]/[method:test()]
- com.github.dakusui.symfonion.tests.ReferenceErrorTest.[engine:junit-jupiter]/[class:com.github.dakusui.symfonion.tests.ReferenceErrorTest]/[method:missingPart()]
|