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/actions/vs200x/tests/vs2003_solution_tests.cpp')
-rw-r--r--src/actions/vs200x/tests/vs2003_solution_tests.cpp45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/actions/vs200x/tests/vs2003_solution_tests.cpp b/src/actions/vs200x/tests/vs2003_solution_tests.cpp
new file mode 100644
index 0000000..8ee8614
--- /dev/null
+++ b/src/actions/vs200x/tests/vs2003_solution_tests.cpp
@@ -0,0 +1,45 @@
+/**
+ * \file vs2003_solution_tests.cpp
+ * \brief Automated tests for VS2003 solution processing.
+ * \author Copyright (c) 2008 Jason Perkins and the Premake project
+ */
+
+#include "premake.h"
+#include "actions/tests/action_tests.h"
+extern "C" {
+#include "actions/vs200x/vs200x_solution.h"
+}
+
+
+SUITE(action)
+{
+ /**********************************************************************
+ * Signature tests
+ **********************************************************************/
+
+ TEST_FIXTURE(FxAction, Vs2003_Signature_IsCorrect)
+ {
+ vs2003_solution_signature(sess, sln, strm);
+ CHECK_EQUAL(
+ "Microsoft Visual Studio Solution File, Format Version 8.00\r\n",
+ buffer);
+ }
+
+
+ /**********************************************************************
+ * Solution configuration tests
+ **********************************************************************/
+
+ TEST_FIXTURE(FxAction, Vs2003_SolutionConfiguration_IsCorrect)
+ {
+ vs2003_solution_configuration(sess, sln, strm);
+ CHECK_EQUAL(
+ "Global\n"
+ "\tGlobalSection(SolutionConfiguration) = preSolution\n"
+ "\t\tDebug = Debug\n"
+ "\t\tRelease = Release\n"
+ "\tEndGlobalSection\n",
+ buffer);
+ }
+
+}