summaryrefslogtreecommitdiff
path: root/test/core
diff options
context:
space:
mode:
authorBenjamin Paassen <bpaassen@techfak.uni-bielefeld.de>2015-01-26 23:55:41 +0100
committerBenjamin Paassen <bpaassen@techfak.uni-bielefeld.de>2015-01-26 23:55:41 +0100
commitf1d432892ce158490bb564ba3d01982772439a81 (patch)
tree043c13b3505ee87cc0a04af9f87b663aef7f7402 /test/core
parenta453da28ddc856176747927a47d21af2bd4d4909 (diff)
Renamed CSS to Style (finally)
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]);
}
}
+}