コード例 #1
0
        public void RetrievalFromGC_GIT_FuncTest()
        {
            RetrievalManager target = new RetrievalManager();
            string           url    = "https://code.google.com/p/owasp-esapi-java-swingset/";//https://code.google.com/p/owaspantisamy/

            target.Run(new DownloadModel {
                Url = url, ArchiveType = ".tar.gz"
            });
        }
コード例 #2
0
        public void RetrievalFromGC_HG_FuncTest()
        {
            RetrievalManager target = new RetrievalManager();
            string           url    = "https://code.google.com/p/python-twitter/";//"https://code.google.com/p/bitverse-unity-gui/";

            target.Run(new DownloadModel {
                Url = url, ArchiveType = ".tar.gz"
            });
        }
コード例 #3
0
        public void RetrievalFromGithub_FuncTest()
        {
            RetrievalManager target = new RetrievalManager();
            string           url    = "https://github.com/trentmillar/research-repo/";//"https://github.com/VinceG/Bootstrap-Admin-Theme/";

            target.Run(new DownloadModel {
                Url = url, ArchiveType = ".tar.gz"
            });
        }
コード例 #4
0
        public void RetrievalFromGC_SVN_FuncTest()
        {
            RetrievalManager target = new RetrievalManager();
            string           url    = "http://owasp-esapi-java.googlecode.com/svn/trunk/";// "http://critterai.googlecode.com/svn/trunk/";

            target.Run(new DownloadModel {
                Url = url, ArchiveType = ".tar.gz"
            });
        }
コード例 #5
0
        public void RetrievalFromCodeplex_SVN_FuncTest()
        {
            RetrievalManager target = new RetrievalManager();
            string           url    = "https://tfsmetrics.svn.codeplex.com/svn"; //"https://htmlagilitypack.svn.codeplex.com/svn";

            target.Run(new DownloadModel {
                Url = url, ArchiveType = ".tar.gz"
            });
        }