Inheritance: AaltoTLS.PluginInterface.CipherSuitePlugin
        public void Constructor()
        {
            BaseCipherSuitePlugin plugin = new BaseCipherSuitePlugin();
            Assert.IsNotNull (plugin.PluginName);
            Assert.IsNotNull (plugin.SupportedCipherSuites);
            Assert.IsNotNull (plugin.SupportedKeyExchangeAlgorithms);
            Assert.IsNotNull (plugin.SupportedSignatureAlgorithms);
            Assert.IsNotNull (plugin.SupportedPseudoRandomFunctions);
            Assert.IsNotNull (plugin.SupportedBulkCipherAlgorithms);
            Assert.IsNotNull (plugin.SupportedMACAlgorithms);

            Assert.IsNotEmpty (plugin.SupportedCipherSuites);
            Assert.IsNotEmpty (plugin.SupportedKeyExchangeAlgorithms);
            Assert.IsNotEmpty (plugin.SupportedSignatureAlgorithms);
            Assert.IsNotEmpty (plugin.SupportedPseudoRandomFunctions);
            Assert.IsNotEmpty (plugin.SupportedBulkCipherAlgorithms);
            Assert.IsNotEmpty (plugin.SupportedMACAlgorithms);
        }
        public void Constructor()
        {
            BaseCipherSuitePlugin plugin = new BaseCipherSuitePlugin();

            Assert.IsNotNull(plugin.PluginName);
            Assert.IsNotNull(plugin.SupportedCipherSuites);
            Assert.IsNotNull(plugin.SupportedKeyExchangeAlgorithms);
            Assert.IsNotNull(plugin.SupportedSignatureAlgorithms);
            Assert.IsNotNull(plugin.SupportedPseudoRandomFunctions);
            Assert.IsNotNull(plugin.SupportedBulkCipherAlgorithms);
            Assert.IsNotNull(plugin.SupportedMACAlgorithms);

            Assert.IsNotEmpty(plugin.SupportedCipherSuites);
            Assert.IsNotEmpty(plugin.SupportedKeyExchangeAlgorithms);
            Assert.IsNotEmpty(plugin.SupportedSignatureAlgorithms);
            Assert.IsNotEmpty(plugin.SupportedPseudoRandomFunctions);
            Assert.IsNotEmpty(plugin.SupportedBulkCipherAlgorithms);
            Assert.IsNotEmpty(plugin.SupportedMACAlgorithms);
        }