format docs, move comments around
This commit is contained in:
parent
3a15e6454d
commit
d8fdf14ec7
@ -13,5 +13,3 @@ namespace BenchtopParser {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// TODO: normalize snake or pascal case
|
@ -47,16 +47,18 @@ namespace BenchtopParser {
|
||||
public class Configuration {
|
||||
public String? name { get; set; }
|
||||
public String? value { get; set; }
|
||||
public String? type { get; set; }
|
||||
public String? unit { get; set; }
|
||||
|
||||
public String? type { get; set; } //possible values are: a, c, f, i. Which I presume are Array, Characters, Float, Integer
|
||||
|
||||
|
||||
public Configuration(List<String> config, String data) {
|
||||
String[] nameValue = data.Split("=");
|
||||
name = nameValue[0].Trim();
|
||||
value = nameValue[1].Trim();
|
||||
|
||||
unit = config[1].Trim();
|
||||
type = config[2].Trim(); //a, c, f, i
|
||||
type = config[2].Trim();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -15,7 +15,6 @@ namespace BenchtopParserTests {
|
||||
Assert.That(tv.transducers[1].name, Is.EqualTo("CTS D34-442 115PSIA"));
|
||||
}
|
||||
|
||||
|
||||
[Test]
|
||||
public void Test_TransducerVerify_Throw_InvalidProgram() {
|
||||
Exception ex = Assert.Throws<Exception>(delegate { BenchtopParser.I28.Load_TransducerVerify("broken"); });
|
||||
|
Loading…
Reference in New Issue
Block a user