Beispiel #1
0
        public void NoColormapSpecifiedFilename()
        {
            string[]     args = new string[] { "--colormap", "-stitches" };
            OptionParser op   = new OptionParser(args);

            string f = op.ParseForColormap();

            Assert.AreEqual(string.Empty, f);
        }
Beispiel #2
0
        public void NoColormapAtAllFilename()
        {
            string[]     args = new string[] { "--colormap" };
            OptionParser op   = new OptionParser(args);

            string f = op.ParseForColormap();

            Assert.AreEqual(string.Empty, f);
        }