blob: 9656406c7875df26357e8df9b5be8a8999dc2a20 [file] [log] [blame]
Rob Vaterlaus934b4ad2013-11-12 10:08:59 -08001package org.projectfloodlight.protocol.match;
2
Praseed Balakrishnanf78068b2014-09-04 10:30:40 -07003import org.junit.Test;
Rob Vaterlaus934b4ad2013-11-12 10:08:59 -08004import org.projectfloodlight.openflow.protocol.OFFactories;
5import org.projectfloodlight.openflow.protocol.OFVersion;
Praseed Balakrishnanf78068b2014-09-04 10:30:40 -07006import org.projectfloodlight.openflow.protocol.match.Match;
7import org.projectfloodlight.openflow.protocol.match.MatchField;
8import org.projectfloodlight.openflow.types.U64;
Rob Vaterlaus934b4ad2013-11-12 10:08:59 -08009
10public class MatchFieldIteration13Test extends MatchFieldIterationBase {
11 public MatchFieldIteration13Test() {
12 super(OFFactories.getFactory(OFVersion.OF_13));
13 }
Praseed Balakrishnanf78068b2014-09-04 10:30:40 -070014
15 @Test
16 public void matchCircuitFields()
17 {
18 Match.Builder builder = factory.buildMatchV3().setExact(MatchField
19 .OCH_SIGTYPE, U64.ZERO);
20
21 }
Rob Vaterlaus934b4ad2013-11-12 10:08:59 -080022}