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

fn_configurations_tests.cpp « tests « script « src - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: be4f702ce71fda86a9547894c74d6c8d0dcb6bef (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
/**
 * \file   fn_configurations_tests.cpp
 * \brief  Automated tests for the configurations() function.
 * \author Copyright (c) 2007-2008 Jason Perkins and the Premake project
 */

#include "premake.h"
#include "script_tests.h"

SUITE(script)
{
	TEST_FIXTURE(FxAccessor, Configurations_Exists_OnStartup)
	{
		const char* result = script_run_string(script, 
			"return (configurations ~= nil)");
		CHECK_EQUAL("true", result);
	}

	TEST_FIXTURE(FxAccessor, Configurations_Error_OnNoActiveSolution)
	{
		Script script = script_create();
		const char* result = script_run_string(script, "configurations {'Debug'}");
		CHECK_EQUAL("no active solution", result);
		script_destroy(script);
	}

	TEST_FIXTURE(FxAccessor, Configurations_CanRoundtrip)
	{
		const char* result = script_run_string(script,
			"configurations {'Debug'};"
			"return configurations()[1]");
		CHECK_EQUAL("Debug", result);
	}
}