Visual Studio 2013-TFS Testing - visual-studio-2013

What kind of tests can be applied a program in Visual Studio 2013-TFS? I am new in testing field and my company uses TFS 2013. Can anyone suggest me some document or already applied tests document in TFS.
Thanks for supports in advanced

You can start with MSDN: Testing the application

You could read the e-book from the Microsoft patterns & practices team, Testing for Continuous Delivery with Visual Studio 2012 (http://msdn.microsoft.com/en-us/library/jj159345).
It gives a good introduction and understanding of how you can use visual studio and related tools to test software.
Even though it is written for 2012, almost everything still applies for TFS 2013.

Related

How Visual Studio is used for?

I am totally new in Visual Studio (VS). I just started a new job in the BI team and they works with Visual studio, which is completely new for me. I searched VS in google; however I still have not got a clearly idea how it works.
Is there someone that could explain me what does VS is used for?
Regards
Microsoft Visual Studio is an integrated development environment from Microsoft. It is used to develop computer programs, as well as websites, web apps, web services and mobile apps.for more information please visit here Micrsooft Visual Studio thanks
For BI job, you can use VS to writing SQL and control DB, VS is more than C++/C#/VB IDE than you think.

Can I use Visual Studio Community 2015 without .NET?

I'm looking for a new html/jquery/css IDE to edit and publish existing websites. Can I use Visual Studio Community 2015 to edit a website that doesn't use .NET and publish it to a server using ftp?
Yes you can use Visual Studio as your main editor. Select any ASP.NET project as your starting point, delete everything in the project and you're good to go. You can add a Publish Profile to enable web deployment (which supports FTP).
It will require the concept of a "Project File" for most features to work well. There is the old Web Site project which just works on any folder, but that hasn't seen much love in the past years. It's new cousin is being introduced with Visual Studio 15 (which will likely be Visual Studio 2016 or 2017).
As an alternative you may want to look at Visual Studio Code as well, it's the light weight cousin of Visual Studio Community Edition and is suited perfectly for the kind of work you're planning it seems.

ASP.NET-5 in Visual Studio 2013

Can I create ASP.NET-5 projects in Visual Studio 2013 somehow?
Also share please links with documentation, examples or anything that could help to create project using mvc6 that used to be on web api.
The simple answer is not. I'm pretty sure, vNext is such big change in Microsoft technologies that they will not put any effort in adding that vs2013, you can get vs2015 community edition is very complete free version of visual studio.
this link is very good starting point.

Bug-tracking system that integrates with Visual Studio 2010 with online-support?

Where can I find a bug-tracking system that integrates with Visual Studio 2010 as an addin, and supports online support (so that anonymous people can add bugs to the buglist)?
You could use TFS and write a simple web frontend utilizing the TFS webservices. Perhaps there are bugtrackers that support TFS integration.
Unfortunately, I do not know of other solutions integrated into VS.
I ended up building my own system based on a database and a webserver. I then created a Visual Studio Package (add-in) through the Visual Studio 2010 SDK for managing bugs that were synced live from the website.
Way better for my needs, and only took 1 week of development.

Is there an alternative to Microsoft Code Contracts static analysis?

I am very impressed with the Microsoft Code Contracts.
Unfortunately the static analysis is only available in Visual Studio 2008 Team System and Visual Studio 2010 Premium.
We are happily using Visual Studio 2008 Professional (without MSDN). Upgrading our Visual Studio license from pro to premium is way to expensive.
Is there a good alternative?
Take a look at the MSDN Ultimate Offer for Devs. It's not cheap, but it's a lot less expensive than 2008 Team Suite. Then you can use Visual Studio 2010 from now on with Code Contracts. :)
Also, Code Contracts is different from FxCop, where the latter is what everyone is going to think you're talking about when you say "static code analysis."
I personally use the following tools to help with my code analysis needs:
CodeIt.Right can be used as an analysis tool.
FxCop quite extensive and thorough and also free
CAT tool 1.1 is a simple tool to help identify security flaws in managed code.
Concerning code contracts, take a look at DevLabs portal and click on the "Projects" link to link you to the Code Contracts project available for Visual Studio 2008 and Visual Studio 2010
The compiler that comes with the platform SDK has static analysis for free.
cl /analyze. You can configure your IDE to use it.

Resources