Ejemplo n.º 1
0
        public void Hello_java()
        {
            RunDriver("Hello");

            string path = Path.Combine(options.OutputDir, driver.Output.Files.Keys.First());

            Approvals.VerifyFile(path);
        }
Ejemplo n.º 2
0
        public void UpperCase_java()
        {
            RunDriver("HelloUpper");

            string path = Path.Combine(options.OutputDir, driver.Output.Files.Keys.First());

            Approvals.VerifyFile(path); //TODO: I don't know if "String wORLD()" is what we want
        }
Ejemplo n.º 3
0
        public void AndroidManifestWithUpperCase()
        {
            temp = Path.Combine(Path.GetTempPath(), "HELLO.dll");
            tempFiles.Add(temp);

            GenerateAssembly();
            XamarinAndroidBuild.GenerateAndroidManifest(new[] { universe.LoadFile(temp) }, manifestPath, true);
            Approvals.VerifyFile(manifestPath);
        }
Ejemplo n.º 4
0
        public void AssemblyWithUpperCase()
        {
            temp = Path.Combine(outputDir, "HELLO.dll");
            tempFiles.Add(temp);

            RunDriver("Hello");

            string path = Path.Combine(options.OutputDir, driver.Output.Files.Keys.First());

            Approvals.VerifyFile(path);
        }
Ejemplo n.º 5
0
 public void AndroidManifest()
 {
     GenerateAssembly();
     XamarinAndroidBuild.GenerateAndroidManifest(new[] { universe.LoadFile(temp) }, manifestPath, true);
     Approvals.VerifyFile(manifestPath);
 }