Exemplo n.º 1
0
        public void GetAttributeBody_returns_body()
        {
            var configuration = new TimestampConfiguration();
            var code          = new CSharpCodeHelper();

            Assert.Equal("Timestamp", configuration.GetAttributeBody(code));
        }
        public void GetAttributeBody_returns_body()
        {
            var configuration = new TimestampConfiguration();
            var code = new CSharpCodeHelper();

            Assert.Equal("Timestamp", configuration.GetAttributeBody(code));
        }
Exemplo n.º 3
0
        public void GetMethodChain_returns_chain()
        {
            var configuration = new TimestampConfiguration();
            var code          = new CSharpCodeHelper();

            Assert.Equal(".IsRowVersion()", configuration.GetMethodChain(code));
        }
        public void GetMethodChain_returns_chain()
        {
            var configuration = new TimestampConfiguration();
            var code = new CSharpCodeHelper();

            Assert.Equal(".IsRowVersion()", configuration.GetMethodChain(code));
        }