summaryrefslogtreecommitdiff
path: root/test/core
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-01-27 01:40:54 +0100
committerAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-01-27 01:40:54 +0100
commitec7f4ee73430906bf53648eba427bfad353a7409 (patch)
treeacd16dba92fa9702fa45c456a321b664de96c0c3 /test/core
parent84f0004cdf45f6fbad6461676897aa27f03cbb93 (diff)
parenta95cf9c477f7259f04d3759acec40a4070ae2b31 (diff)
Merge branch 'master' of somweyr.de:ousia
Diffstat (limited to 'test/core')
-rw-r--r--test/core/model/StyleTest.cpp (renamed from test/core/CSSTest.cpp)4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/core/CSSTest.cpp b/test/core/model/StyleTest.cpp
index 2d182a1..4727f4d 100644
--- a/test/core/CSSTest.cpp
+++ b/test/core/model/StyleTest.cpp
@@ -18,9 +18,10 @@
#include <gtest/gtest.h>
-#include <core/CSS.hpp>
+#include <core/model/Style.hpp>
namespace ousia {
+namespace model {
TEST(Specificity, testOperators)
{
Specificity s1{0, 0, 1};
@@ -268,3 +269,4 @@ TEST(SelectorNode, testAppend)
ASSERT_EQ(ASelect, children[1]);
}
}
+}