Welcome to mirror list, hosted at ThFree Co, Russian Federation.

vs200x_tests.cpp « tests « vs200x « action « src - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6643970d6dde9ae22294f706532cc9ad0274459d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
 * \file   vs200x_tests.cpp
 * \brief  Automated tests for VS200x support functions.
 * \author Copyright (c) 2008 Jason Perkins and the Premake project
 */

#include "premake.h"
#include "testing/testing.h"
extern "C" {
#include "action/vs200x/vs200x.h"
}

#include "vs200x_tests.h"


SUITE(action)
{
	/**********************************************************************
	 * Version identification tests
	 **********************************************************************/

	TEST_FIXTURE(FxVs200x, GetTargetVersion_Returns2002_OnVs2002)
	{
		session_set_action(sess, "vs2002");
		int result = vs200x_get_target_version(sess);
		CHECK(result == 2002);
	}

	TEST_FIXTURE(FxVs200x, GetTargetVersion_Returns2003_OnVs2003)
	{
		session_set_action(sess, "vs2003");
		int result = vs200x_get_target_version(sess);
		CHECK(result == 2003);
	}

	TEST_FIXTURE(FxVs200x, GetTargetVersion_Returns2005_OnVs2005)
	{
		session_set_action(sess, "vs2005");
		int result = vs200x_get_target_version(sess);
		CHECK(result == 2005);
	}
}