diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-27 01:40:54 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-27 01:40:54 +0100 |
commit | ec7f4ee73430906bf53648eba427bfad353a7409 (patch) | |
tree | acd16dba92fa9702fa45c456a321b664de96c0c3 /test/core | |
parent | 84f0004cdf45f6fbad6461676897aa27f03cbb93 (diff) | |
parent | a95cf9c477f7259f04d3759acec40a4070ae2b31 (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]); } } +} |