public void TestCL_TargetValueSimple() {
     TargetValueCommandLine sample1 = new TargetValueCommandLine(
         new String[] { "targetValue" }
     );
     Assert.AreEqual(0, sample1.MissingRequiredCommandLineOptions.Count);
     Assert.AreEqual("targetValue", sample1.TargetString);
 }
 public void TestCL_TargetValueSimpleMissingRequired() {
     TargetValueCommandLine sample1 = new TargetValueCommandLine(
         new String[] { }
     );
     Assert.AreEqual(1, sample1.MissingRequiredCommandLineOptions.Count);
 }