2013-02-28 4 views
1

git-tfs을 수정하려고합니다. 그러나 나는 그것을 구축 할 수없는 것 같습니다.빌드 가능 git-tfs 받기

내가 무슨 짓을 :

1. Read the readme which states for building: 
    1a. Update submodules. git submodule update to get the libgit2sharp dependencies. 
    1b. Build with msbuild GitTfs.sln /p:Configuration=debug for the default debug build. 
2. clone git-tfs: git clone [email protected]:git-tfs/git-tfs.git 
3. git submodule update 

그러나, 서브 모듈이 업데이트는 직업 수행하지 않는 것 - 그것은 어떤 소스를 가져 오지 않습니다.

내가 뭘 잘못하고 있니? 자식-TFS에 대한 통합 테스트를 실행하려면 그 후

git submodule init 
git submodule update 

당신이 xUnit의를 얻을해야합니다 및 실행 :

답변

1

당신은 갱신 전에 init을 실행해야

https://github.com/git-tfs/git-tfs/wiki/Running-the-Unit-Tests

xUnit의 VS2012의 테스트 러너 : http://visualstudiogallery.msdn.microsoft.com/463c5987-f82b-46c8-a97e-b1cde42b9099

통합 테스트를 실행하려면 다음을 수행하십시오. VS2008, 2010 및 2012 용 TFS 플러그인 (팀 탐색기)을 설치하십시오. 그러나 실행하지 않으려는 경우 (GitTfs.Vs2008, GitTfs.Vs2010 및 GitTfs.Vs11) 해당 프로젝트를 언로드 할 수 있습니다. GitTfs.VSFake는 다른 Visual Studio 버전의 가짜 프로그램이며 대부분의 테스트를 실행할 수 있습니다.

관련 문제