Exemplo n.º 1
0
 public void ExtractSamplePhaseSet_PSIsDot_ReturnDot()
 {
     Assert.Equal(".", PositionSet.ExtractSamplePhaseSet(1, new[] { "0|1", "." }));
 }
Exemplo n.º 2
0
 public void ExtractSamplePhaseSet_PSIsNum_ReturnTheNum()
 {
     Assert.Equal("123", PositionSet.ExtractSamplePhaseSet(1, new[] { "0|1", "123" }));
 }
Exemplo n.º 3
0
 public void ExtractSamplePhaseSet_NegativePSIndex_ReturnDot()
 {
     Assert.Equal(".", PositionSet.ExtractSamplePhaseSet(-1, new[] { "0|1", "." }));
 }