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

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/action/vs200x/tests/vs2002_config_tests.cpp')
-rw-r--r--src/action/vs200x/tests/vs2002_config_tests.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/action/vs200x/tests/vs2002_config_tests.cpp b/src/action/vs200x/tests/vs2002_config_tests.cpp
deleted file mode 100644
index e3fe0d1..0000000
--- a/src/action/vs200x/tests/vs2002_config_tests.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-/**
- * \file vs2002_config_tests.cpp
- * \brief Automated tests for VS2002 configuration processing.
- * \author Copyright (c) 2008 Jason Perkins and the Premake project
- */
-
-#include "premake.h"
-#include "action/tests/action_tests.h"
-extern "C" {
-#include "action/vs200x/vs200x_config.h"
-}
-
-struct Fx2002Config : FxAction
-{
- Fx2002Config()
- {
- session_set_action(sess, "vs2002");
- }
-};
-
-
-SUITE(action)
-{
- TEST_FIXTURE(Fx2002Config, CharacterSet_Default)
- {
- vs200x_config_character_set(sess, strm);
- CHECK_EQUAL("\n\t\t\tCharacterSet=\"2\"", buffer);
- }
-}