public void StaticImage_NoFading_Alpha_Stripes()
        {
            const string testInputFile = @"TestInputs\256_test_stripes.png";
            const string actualOutputFile = @"ActualOutputs\256_alpha_stripes.vtf";

            VTFGenerator generator = new VTFGenerator(testInputFile, actualOutputFile);
            generator.Process(true);
        }
        public void StaticImage_NoFading_Alpha()
        {
            const string testInputFile = @"TestInputs\256_Static_NoAlpha.jpg";
            const string actualOutputFile = @"ActualOutputs\256_Static_Alpha.vtf";

            VTFGenerator generator = new VTFGenerator(testInputFile, actualOutputFile);
            generator.Process(true);
        }
        public void Animation_NoFading_NoAlpha_Stripes()
        {
            const string testInputFile = @"TestInputs\256_stripe_animated.gif";
            const string actualOutputFile = @"ActualOutputs\256_stripe_animated.vtf";

            VTFGenerator generator = new VTFGenerator(testInputFile, actualOutputFile);
            generator.Process(false);
        }
        public void StaticImage_Fading_NoAlpha()
        {
            const string smallInputFile = @"TestInputs\256_Static_NoAlpha.jpg";
            const string bigInputFile = @"TestInputs\256_test_stripes.png";
            const string actualOutputFile = @"ActualOutputs\256_Static_Fading_NoAlpha.vtf";

            VTFGenerator generator = new VTFGenerator(smallInputFile, bigInputFile, actualOutputFile);
            generator.Process(false);
        }
        public void WeirdSize()
        {
            const string testInputFile = @"TestInputs\510x510.gif";
            const string actualOutputFile = @"ActualOutputs\weirdsize.vtf";

            VTFGenerator generator = new VTFGenerator(testInputFile, actualOutputFile);
            generator.Process(false);
        }